Skip to content

Commit d034e9b

Browse files
committed
Fix hot standby bug with GiST scans.
Don't reset the rightlink of a page when replaying a page update record. This was a leftover from pre-hot standby days, when it was not possible to have scans concurrent with WAL replay. Resetting the right-link was not necessary back then either, but it was done for the sake of tidiness. But with hot standby, it's wrong, because a concurrent scan might still need it. Backpatch all versions with hot standby, 9.0 and above.
1 parent 5c26ab6 commit d034e9b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/backend/access/gist/gistxlog.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ gistRedoPageUpdateRecord(XLogRecPtr lsn, XLogRecord *record, bool isnewroot)
253253
*/
254254
GistPageSetLeaf(page);
255255

256-
GistPageGetOpaque(page)->rightlink = InvalidBlockNumber;
257256
PageSetLSN(page, lsn);
258257
PageSetTLI(page, ThisTimeLineID);
259258
MarkBufferDirty(buffer);

0 commit comments

Comments
 (0)