diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-06-28 16:01:13 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-06-28 16:01:13 -0400 |
commit | b78364df1850a09ece442a138118f4be1a451366 (patch) | |
tree | acccc4f43619c3008ee524667c648229a6a594ae /src/include/access/gist_private.h | |
parent | 8e1ad1b37c7afdf99815f9ed1ca255264e0b3f9e (diff) | |
download | postgresql-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/include/access/gist_private.h')
-rw-r--r-- | src/include/access/gist_private.h | 5 |
1 files changed, 2 insertions, 3 deletions
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); |