Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7ca32e2

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 38a2b95 commit 7ca32e2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/backend/access/gist/gistxlog.c

-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ gistRedoPageUpdateRecord(XLogRecPtr lsn, XLogRecord *record)
182182
GistPageSetLeaf(page);
183183
}
184184

185-
GistPageGetOpaque(page)->rightlink = InvalidBlockNumber;
186185
PageSetLSN(page, lsn);
187186
MarkBufferDirty(buffer);
188187
UnlockReleaseBuffer(buffer);

0 commit comments

Comments
 (0)