We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af2565 commit d360e3cCopy full SHA for d360e3c
src/backend/storage/smgr/bulk_write.c
@@ -57,7 +57,7 @@ typedef struct PendingWrite
57
/*
58
* Bulk writer state for one relation fork.
59
*/
60
-typedef struct BulkWriteState
+struct BulkWriteState
61
{
62
/* Information about the target relation we're writing */
63
SMgrRelation smgr;
@@ -75,7 +75,7 @@ typedef struct BulkWriteState
75
XLogRecPtr start_RedoRecPtr;
76
77
MemoryContext memcxt;
78
-} BulkWriteState;
+};
79
80
static void smgr_bulk_flush(BulkWriteState *bulkstate);
81
src/include/storage/bulk_write.h
@@ -17,6 +17,7 @@
17
#include "storage/smgr.h"
18
#include "utils/rel.h"
19
20
+/* Bulk writer state, contents are private to bulk_write.c */
21
typedef struct BulkWriteState BulkWriteState;
22
23
0 commit comments