1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

Remove unused argument from ginInsertCleanup()

It's an oversight in commit dc943ad.
This commit is contained in:
Fujii Masao
2016-01-22 01:22:56 +09:00
parent c80b31d557
commit 38710a374e
3 changed files with 6 additions and 10 deletions

View File

@ -946,7 +946,7 @@ extern void ginHeapTupleFastCollect(GinState *ginstate,
OffsetNumber attnum, Datum value, bool isNull,
ItemPointer ht_ctid);
extern void ginInsertCleanup(GinState *ginstate,
bool vac_delay, bool fill_fsm, IndexBulkDeleteResult *stats);
bool fill_fsm, IndexBulkDeleteResult *stats);
/* ginpostinglist.c */