mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
Fix declaration of GinVacuumState.
gcc 4.8 was happy with having a duplicate typedef, but most compilers seem not to be, per buildfarm.
This commit is contained in:
parent
36a35c550a
commit
6668ad1d70
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue