Skip to content

Commit 80ddd04

Browse files
committed
Fix whitespace
1 parent 59efda3 commit 80ddd04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend/utils/sort/tuplesort.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ tuplesort_putheaptuple(Tuplesortstate *state, HeapTuple tup)
11401140
void
11411141
tuplesort_putindextuplevalues(Tuplesortstate *state, Relation rel,
11421142
ItemPointer self, Datum *values,
1143-
bool *isnull)
1143+
bool *isnull)
11441144
{
11451145
MemoryContext oldcontext = MemoryContextSwitchTo(state->sortcontext);
11461146
SortTuple stup;

src/include/access/hash.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ typedef struct HSpool HSpool; /* opaque struct in hashsort.c */
337337
extern HSpool *_h_spoolinit(Relation heap, Relation index, uint32 num_buckets);
338338
extern void _h_spooldestroy(HSpool *hspool);
339339
extern void _h_spool(HSpool *hspool, ItemPointer self,
340-
Datum *values, bool *isnull);
340+
Datum *values, bool *isnull);
341341
extern void _h_indexbuild(HSpool *hspool);
342342

343343
/* hashutil.c */

0 commit comments

Comments
 (0)