aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/heap/hio.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-10-12 16:53:54 -0400
committerBruce Momjian <bruce@momjian.us>2011-10-12 16:53:54 -0400
commit484af9b376f3dca3805932d5c40c45ecf6fca0d4 (patch)
tree8f9fef13cb9b548cb1e34d687b4a6e38787bb888 /src/backend/access/heap/hio.c
parent6e22ba03a9fe6853e812268ef404e45aac4866ab (diff)
downloadpostgresql-484af9b376f3dca3805932d5c40c45ecf6fca0d4.tar.gz
postgresql-484af9b376f3dca3805932d5c40c45ecf6fca0d4.zip
Modify RelationGetBufferForTuple() to use a typedef, rather than a
struct, to help pgindent.
Diffstat (limited to 'src/backend/access/heap/hio.c')
-rw-r--r--src/backend/access/heap/hio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/hio.c b/src/backend/access/heap/hio.c
index 26db1e3d8d0..beecc9050fb 100644
--- a/src/backend/access/heap/hio.c
+++ b/src/backend/access/heap/hio.c
@@ -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);