diff options
-rw-r--r-- | src/backend/access/gin/ginvacuum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gin/ginvacuum.c b/src/backend/access/gin/ginvacuum.c index 6bf65c32935..115f2abc9e4 100644 --- a/src/backend/access/gin/ginvacuum.c +++ b/src/backend/access/gin/ginvacuum.c @@ -22,7 +22,7 @@ #include "storage/lmgr.h" #include "utils/memutils.h" -typedef struct GinVacuumState +struct GinVacuumState { Relation index; IndexBulkDeleteResult *result; @@ -31,7 +31,7 @@ typedef struct GinVacuumState GinState ginstate; BufferAccessStrategy strategy; MemoryContext tmpCxt; -} GinVacuumState; +}; /* * Vacuums an uncompressed posting list. The size of the must can be specified |