1
0
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:
Bruce Momjian
2011-10-12 16:53:54 -04:00
parent 6e22ba03a9
commit 484af9b376
2 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ GetVisibilityMapPins(Relation relation, Buffer buffer1, Buffer buffer2,
Buffer
RelationGetBufferForTuple(Relation relation, Size len,
Buffer otherBuffer, int options,
struct BulkInsertStateData * bistate,
BulkInsertState bistate,
Buffer *vmbuffer, Buffer *vmbuffer_other)
{
bool use_fsm = !(options & HEAP_INSERT_SKIP_FSM);