summaryrefslogtreecommitdiff
path: root/src/include/access
diff options
context:
space:
mode:
authorBruce Momjian2011-10-12 20:53:54 +0000
committerBruce Momjian2011-10-12 20:53:54 +0000
commit484af9b376f3dca3805932d5c40c45ecf6fca0d4 (patch)
tree8f9fef13cb9b548cb1e34d687b4a6e38787bb888 /src/include/access
parent6e22ba03a9fe6853e812268ef404e45aac4866ab (diff)
Modify RelationGetBufferForTuple() to use a typedef, rather than a
struct, to help pgindent.
Diffstat (limited to 'src/include/access')
-rw-r--r--src/include/access/hio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/hio.h b/src/include/access/hio.h
index 6eac97e46cd..aefd6791652 100644
--- a/src/include/access/hio.h
+++ b/src/include/access/hio.h
@@ -38,7 +38,7 @@ extern void RelationPutHeapTuple(Relation relation, Buffer buffer,
HeapTuple tuple);
extern Buffer RelationGetBufferForTuple(Relation relation, Size len,
Buffer otherBuffer, int options,
- struct BulkInsertStateData * bistate,
+ BulkInsertState bistate,
Buffer *vmbuffer, Buffer *vmbuffer_other);
#endif /* HIO_H */