summaryrefslogtreecommitdiff
path: root/src/backend/storage/smgr/bulk_write.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/storage/smgr/bulk_write.c')
-rw-r--r--src/backend/storage/smgr/bulk_write.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/smgr/bulk_write.c b/src/backend/storage/smgr/bulk_write.c
index 04a76ec5e36..4a10ece4c39 100644
--- a/src/backend/storage/smgr/bulk_write.c
+++ b/src/backend/storage/smgr/bulk_write.c
@@ -57,7 +57,7 @@ typedef struct PendingWrite
/*
* Bulk writer state for one relation fork.
*/
-typedef struct BulkWriteState
+struct BulkWriteState
{
/* Information about the target relation we're writing */
SMgrRelation smgr;
@@ -75,7 +75,7 @@ typedef struct BulkWriteState
XLogRecPtr start_RedoRecPtr;
MemoryContext memcxt;
-} BulkWriteState;
+};
static void smgr_bulk_flush(BulkWriteState *bulkstate);