mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Remove useless argument from nbtree dedup function.
_bt_dedup_pass()'s heapRel argument hasn't been needed or used since
commit cf2acaf4dc
made deleting any existing LP_DEAD index tuples the
caller's responsibility.
This commit is contained in:
@ -1157,9 +1157,8 @@ extern void _bt_parallel_advance_array_keys(IndexScanDesc scan);
|
||||
/*
|
||||
* prototypes for functions in nbtdedup.c
|
||||
*/
|
||||
extern void _bt_dedup_pass(Relation rel, Buffer buf, Relation heapRel,
|
||||
IndexTuple newitem, Size newitemsz,
|
||||
bool bottomupdedup);
|
||||
extern void _bt_dedup_pass(Relation rel, Buffer buf, IndexTuple newitem,
|
||||
Size newitemsz, bool bottomupdedup);
|
||||
extern bool _bt_bottomupdel_pass(Relation rel, Buffer buf, Relation heapRel,
|
||||
Size newitemsz);
|
||||
extern void _bt_dedup_start_pending(BTDedupState state, IndexTuple base,
|
||||
|
Reference in New Issue
Block a user