File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ typedef struct PendingWrite
57
57
/*
58
58
* Bulk writer state for one relation fork.
59
59
*/
60
- typedef struct BulkWriteState
60
+ struct BulkWriteState
61
61
{
62
62
/* Information about the target relation we're writing */
63
63
SMgrRelation smgr ;
@@ -75,7 +75,7 @@ typedef struct BulkWriteState
75
75
XLogRecPtr start_RedoRecPtr ;
76
76
77
77
MemoryContext memcxt ;
78
- } BulkWriteState ;
78
+ };
79
79
80
80
static void smgr_bulk_flush (BulkWriteState * bulkstate );
81
81
Original file line number Diff line number Diff line change <
6133
colgroup>17
17
#include "storage/smgr.h"
18
18
#include "utils/rel.h"
19
19
20
+ /* Bulk writer state, contents are private to bulk_write.c */
20
21
typedef struct BulkWriteState BulkWriteState ;
21
22
22
23
/*
You can’t perform that action at this time.
0 commit comments