]> granicus.if.org Git - postgresql/commitdiff
Fix whitespace
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 11 Jul 2014 19:12:11 +0000 (15:12 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 11 Jul 2014 19:12:11 +0000 (15:12 -0400)
src/backend/utils/sort/tuplesort.c
src/include/access/hash.h

index 426a64af8673e70a28196fa5773cef4f3c6daa1f..8e57505eddc48c7f1042e417d08789680f580e6a 100644 (file)
@@ -1140,7 +1140,7 @@ tuplesort_putheaptuple(Tuplesortstate *state, HeapTuple tup)
 void
 tuplesort_putindextuplevalues(Tuplesortstate *state, Relation rel,
                                                          ItemPointer self, Datum *values,
-                              bool *isnull)
+                                                         bool *isnull)
 {
        MemoryContext oldcontext = MemoryContextSwitchTo(state->sortcontext);
        SortTuple       stup;
index 42a1d949a55dbca398390b6fc26c4883aa05289a..ff29fea08902bc2887c0f9aff2f67c9b2d5ca2c7 100644 (file)
@@ -337,7 +337,7 @@ typedef struct HSpool HSpool;       /* opaque struct in hashsort.c */
 extern HSpool *_h_spoolinit(Relation heap, Relation index, uint32 num_buckets);
 extern void _h_spooldestroy(HSpool *hspool);
 extern void _h_spool(HSpool *hspool, ItemPointer self,
-                Datum *values, bool *isnull);
+                                        Datum *values, bool *isnull);
 extern void _h_indexbuild(HSpool *hspool);
 
 /* hashutil.c */