Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6668ad1

Browse files
committed
Fix declaration of GinVacuumState.
gcc 4.8 was happy with having a duplicate typedef, but most compilers seem not to be, per buildfarm.
1 parent 36a35c5 commit 6668ad1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/gin/ginvacuum.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "storage/lmgr.h"
2323
#include "utils/memutils.h"
2424

25-
typedef struct GinVacuumState
25+
struct GinVacuumState
2626
{
2727
Relation index;
2828
IndexBulkDeleteResult *result;
@@ -31,7 +31,7 @@ typedef struct GinVacuumState
3131
GinState ginstate;
3232
BufferAccessStrategy strategy;
3333
MemoryContext tmpCxt;
34-
} GinVacuumState;
34+
};
3535

3636
/*
3737
* Vacuums an uncompressed posting list. The size of the must can be specified

0 commit comments

Comments
 (0)