mirror of
https://github.com/postgres/postgres.git
synced 2025-08-25 20:23:07 +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:
@@ -465,13 +465,12 @@ extern const char *gist_identify(uint8 info);
|
||||
extern void gist_xlog_startup(void);
|
||||
extern void gist_xlog_cleanup(void);
|
||||
|
||||
extern XLogRecPtr gistXLogUpdate(RelFileNode node, Buffer buffer,
|
||||
extern XLogRecPtr gistXLogUpdate(Buffer buffer,
|
||||
OffsetNumber *todelete, int ntodelete,
|
||||
IndexTuple *itup, int ntup,
|
||||
Buffer leftchild);
|
||||
|
||||
extern XLogRecPtr gistXLogSplit(RelFileNode node,
|
||||
BlockNumber blkno, bool page_is_leaf,
|
||||
extern XLogRecPtr gistXLogSplit(bool page_is_leaf,
|
||||
SplitedPageLayout *dist,
|
||||
BlockNumber origrlink, GistNSN oldnsn,
|
||||
Buffer leftchild, bool markfollowright);
|
||||
|
Reference in New Issue
Block a user