diff options
author | Thomas Munro <tmunro@postgresql.org> | 2023-09-08 17:12:12 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2023-09-08 17:12:12 +1200 |
commit | 9f0602539db4573b89c09abab666e85b653940bd (patch) | |
tree | 72a9620e3fabfbb03e82fb3c84753522e4787153 /src/backend/access/gin/gininsert.c | |
parent | e722846daf4a37797ee39bc8ca3e78a4ef437f51 (diff) | |
download | postgresql-9f0602539db4573b89c09abab666e85b653940bd.tar.gz postgresql-9f0602539db4573b89c09abab666e85b653940bd.zip |
Remove some more "snapshot too old" vestiges.
Commit f691f5b8 removed the logic, but left behind some now-useless
Snapshot arguments to various AM-internal functions, and missed a couple
of comments.
Reported-by: Peter Geoghegan <pg@bowt.ie>
Discussion: https://postgr.es/m/CAH2-Wznj9qSNXZ1P1uWTUD_FeaTezbUazb416EPwi4Qr_jR_6A%40mail.gmail.com
Diffstat (limited to 'src/backend/access/gin/gininsert.c')
-rw-r--r-- | src/backend/access/gin/gininsert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/gin/gininsert.c b/src/backend/access/gin/gininsert.c index 56968b95acf..b4d216d4c6a 100644 --- a/src/backend/access/gin/gininsert.c +++ b/src/backend/access/gin/gininsert.c @@ -192,7 +192,7 @@ ginEntryInsert(GinState *ginstate, ginPrepareEntryScan(&btree, attnum, key, category, ginstate); btree.isBuild = (buildStats != NULL); - stack = ginFindLeafPage(&btree, false, false, NULL); + stack = ginFindLeafPage(&btree, false, false); page = BufferGetPage(stack->buffer); if (btree.findItem(&btree, stack)) |