1
0
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:
Alvaro Herrera
2016-06-28 16:01:13 -04:00
parent 8e1ad1b37c
commit b78364df18
4 changed files with 8 additions and 9 deletions

View File

@ -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);