From b78364df1850a09ece442a138118f4be1a451366 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 28 Jun 2016 16:01:13 -0400 Subject: Remove unused arguments in two GiST subroutines These arguments became unused in commit 2c03216d8311. Noticed while skimming code for unrelated development. This is cosmetic, so no backpatch. --- src/include/access/gist_private.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/include/access/gist_private.h') diff --git a/src/include/access/gist_private.h b/src/include/access/gist_private.h index f9732ba7fb9..23e0fe31978 100644 --- a/src/include/access/gist_private.h +++ b/src/include/access/gist_private.h @@ -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); -- cgit v1.2.3