Fix whitespace

This commit is contained in:
Peter Eisentraut 2014-07-11 15:12:11 -04:00
parent 59efda3e50
commit 80ddd04b4d
2 changed files with 2 additions and 2 deletions

View File

@ -1140,7 +1140,7 @@ tuplesort_putheaptuple(Tuplesortstate *state, HeapTuple tup)
void void
tuplesort_putindextuplevalues(Tuplesortstate *state, Relation rel, tuplesort_putindextuplevalues(Tuplesortstate *state, Relation rel,
ItemPointer self, Datum *values, ItemPointer self, Datum *values,
bool *isnull) bool *isnull)
{ {
MemoryContext oldcontext = MemoryContextSwitchTo(state->sortcontext); MemoryContext oldcontext = MemoryContextSwitchTo(state->sortcontext);
SortTuple stup; SortTuple stup;

View 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 HSpool *_h_spoolinit(Relation heap, Relation index, uint32 num_buckets);
extern void _h_spooldestroy(HSpool *hspool); extern void _h_spooldestroy(HSpool *hspool);
extern void _h_spool(HSpool *hspool, ItemPointer self, extern void _h_spool(HSpool *hspool, ItemPointer self,
Datum *values, bool *isnull); Datum *values, bool *isnull);
extern void _h_indexbuild(HSpool *hspool); extern void _h_indexbuild(HSpool *hspool);
/* hashutil.c */ /* hashutil.c */