diff options
| author | Bruce Momjian <bruce@momjian.us> | 2011-10-12 16:53:54 -0400 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2011-10-12 16:53:54 -0400 |
| commit | 484af9b376f3dca3805932d5c40c45ecf6fca0d4 (patch) | |
| tree | 8f9fef13cb9b548cb1e34d687b4a6e38787bb888 /src/include/access/hio.h | |
| parent | 6e22ba03a9fe6853e812268ef404e45aac4866ab (diff) | |
| download | postgresql-484af9b376f3dca3805932d5c40c45ecf6fca0d4.tar.gz | |
Modify RelationGetBufferForTuple() to use a typedef, rather than a
struct, to help pgindent.
Diffstat (limited to 'src/include/access/hio.h')
| -rw-r--r-- | src/include/access/hio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/hio.h b/src/include/access/hio.h index 6eac97e46c..aefd679165 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 */ |
