mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Remove unused arguments in two GiST subroutines
These arguments became unused in commit 2c03216d83
. Noticed while
skimming code for unrelated development.
This is cosmetic, so no backpatch.
This commit is contained in:
@ -223,7 +223,7 @@ gistbulkdelete(IndexVacuumInfo *info, IndexBulkDeleteResult *stats,
|
||||
{
|
||||
XLogRecPtr recptr;
|
||||
|
||||
recptr = gistXLogUpdate(rel->rd_node, buffer,
|
||||
recptr = gistXLogUpdate(buffer,
|
||||
todelete, ntodelete,
|
||||
NULL, 0, InvalidBuffer);
|
||||
PageSetLSN(page, recptr);
|
||||
|
Reference in New Issue
Block a user