diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-07-11 15:12:11 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-07-11 15:12:11 -0400 |
commit | 80ddd04b4d66ad6564b6d77ffc2bd8fb5e0dcdfa (patch) | |
tree | 87ed513df4b9cdafab29c12d03a796384dd4ef60 /src | |
parent | 59efda3e50ca4de6a9d5aa4491464e22b6329b1e (diff) | |
download | postgresql-80ddd04b4d66ad6564b6d77ffc2bd8fb5e0dcdfa.tar.gz postgresql-80ddd04b4d66ad6564b6d77ffc2bd8fb5e0dcdfa.zip |
Fix whitespace
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/sort/tuplesort.c | 2 | ||||
-rw-r--r-- | src/include/access/hash.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/sort/tuplesort.c b/src/backend/utils/sort/tuplesort.c index 426a64af867..8e57505eddc 100644 --- a/src/backend/utils/sort/tuplesort.c +++ b/src/backend/utils/sort/tuplesort.c @@ -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; diff --git a/src/include/access/hash.h b/src/include/access/hash.h index 42a1d949a55..ff29fea0890 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.h @@ -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 */ |