mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Modify RelationGetBufferForTuple() to use a typedef, rather than a
struct, to help pgindent.
This commit is contained in:
@ -213,7 +213,7 @@ GetVisibilityMapPins(Relation relation, Buffer buffer1, Buffer buffer2,
|
|||||||
Buffer
|
Buffer
|
||||||
RelationGetBufferForTuple(Relation relation, Size len,
|
RelationGetBufferForTuple(Relation relation, Size len,
|
||||||
Buffer otherBuffer, int options,
|
Buffer otherBuffer, int options,
|
||||||
struct BulkInsertStateData * bistate,
|
BulkInsertState bistate,
|
||||||
Buffer *vmbuffer, Buffer *vmbuffer_other)
|
Buffer *vmbuffer, Buffer *vmbuffer_other)
|
||||||
{
|
{
|
||||||
bool use_fsm = !(options & HEAP_INSERT_SKIP_FSM);
|
bool use_fsm = !(options & HEAP_INSERT_SKIP_FSM);
|
||||||
|
@ -38,7 +38,7 @@ extern void RelationPutHeapTuple(Relation relation, Buffer buffer,
|
|||||||
HeapTuple tuple);
|
HeapTuple tuple);
|
||||||
extern Buffer RelationGetBufferForTuple(Relation relation, Size len,
|
extern Buffer RelationGetBufferForTuple(Relation relation, Size len,
|
||||||
Buffer otherBuffer, int options,
|
Buffer otherBuffer, int options,
|
||||||
struct BulkInsertStateData * bistate,
|
BulkInsertState bistate,
|
||||||
Buffer *vmbuffer, Buffer *vmbuffer_other);
|
Buffer *vmbuffer, Buffer *vmbuffer_other);
|
||||||
|
|
||||||
#endif /* HIO_H */
|
#endif /* HIO_H */
|
||||||
|
Reference in New Issue
Block a user