Commit 6668ad1d authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix declaration of GinVacuumState.

gcc 4.8 was happy with having a duplicate typedef, but most compilers seem not
to be, per buildfarm.
parent 36a35c55
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "storage/lmgr.h" #include "storage/lmgr.h"
#include "utils/memutils.h" #include "utils/memutils.h"
typedef struct GinVacuumState struct GinVacuumState
{ {
Relation index; Relation index;
IndexBulkDeleteResult *result; IndexBulkDeleteResult *result;
...@@ -31,7 +31,7 @@ typedef struct GinVacuumState ...@@ -31,7 +31,7 @@ typedef struct GinVacuumState
GinState ginstate; GinState ginstate;
BufferAccessStrategy strategy; BufferAccessStrategy strategy;
MemoryContext tmpCxt; MemoryContext tmpCxt;
} GinVacuumState; };
/* /*
* Vacuums an uncompressed posting list. The size of the must can be specified * Vacuums an uncompressed posting list. The size of the must can be specified
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment