aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gistxlog.c
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2016-06-28 16:01:13 -0400
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2016-06-28 16:01:13 -0400
commitb78364df1850a09ece442a138118f4be1a451366 (patch)
treeacccc4f43619c3008ee524667c648229a6a594ae /src/backend/access/gist/gistxlog.c
parent8e1ad1b37c7afdf99815f9ed1ca255264e0b3f9e (diff)
downloadpostgresql-b78364df1850a09ece442a138118f4be1a451366.tar.gz
postgresql-b78364df1850a09ece442a138118f4be1a451366.zip
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.
Diffstat (limited to 'src/backend/access/gist/gistxlog.c')
-rw-r--r--src/backend/access/gist/gistxlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/gistxlog.c b/src/backend/access/gist/gistxlog.c
index b48e97cc66e..01c7ef7ea67 100644
--- a/src/backend/access/gist/gistxlog.c
+++ b/src/backend/access/gist/gistxlog.c
@@ -323,7 +323,7 @@ gist_xlog_cleanup(void)
* Write WAL record of a page split.
*/
XLogRecPtr
-gistXLogSplit(RelFileNode node, BlockNumber blkno, bool page_is_leaf,
+gistXLogSplit(bool page_is_leaf,
SplitedPageLayout *dist,
BlockNumber origrlink, GistNSN orignsn,
Buffer leftchildbuf, bool markfollowright)
@@ -387,7 +387,7 @@ gistXLogSplit(RelFileNode node, BlockNumber blkno, bool page_is_leaf,
* to log the whole buffer contents instead.
*/
XLogRecPtr
-gistXLogUpdate(RelFileNode node, Buffer buffer,
+gistXLogUpdate(Buffer buffer,
OffsetNumber *todelete, int ntodelete,
IndexTuple *itup, int ituplen,
Buffer leftchildbuf)