Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 484af9b

Browse files
committed
Modify RelationGetBufferForTuple() to use a typedef, rather than a
struct, to help pgindent.
1 parent 6e22ba0 commit 484af9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend/access/heap/hio.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ GetVisibilityMapPins(Relation relation, Buffer buffer1, Buffer buffer2,
213213
Buffer
214214
RelationGetBufferForTuple(Relation relation, Size len,
215215
Buffer otherBuffer, int options,
216-
struct BulkInsertStateData * bistate,
216+
BulkInsertState bistate,
217217
Buffer *vmbuffer, Buffer *vmbuffer_other)
218218
{
219219
bool use_fsm = !(options & HEAP_INSERT_SKIP_FSM);

src/include/access/hio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extern void RelationPutHeapTuple(Relation relation, Buffer buffer,
3838
HeapTuple tuple);
3939
extern Buffer RelationGetBufferForTuple(Relation relation, Size len,
4040
Buffer otherBuffer, int options,
41-
struct BulkInsertStateData * bistate,
41+
BulkInsertState bistate,
4242
Buffer *vmbuffer, Buffer *vmbuffer_other);
4343

4444
#endif /* HIO_H */

0 commit comments

Comments
 (0)