]> granicus.if.org Git - postgresql/commit
Fix lastReplayedEndRecPtr calculation when starting from shutdown checkpoint.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 5 Mar 2014 11:27:18 +0000 (13:27 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 5 Mar 2014 11:52:21 +0000 (13:52 +0200)
commit2cd72ba42d22a1d19cfb9c01e59f82519ab22a9f
tree1d63963880afefb54ce405b4d77f18bdfd007548
parent38587d7d286faeec83bdbb89ff34eeee5eabb23e
Fix lastReplayedEndRecPtr calculation when starting from shutdown checkpoint.

When entering crash recovery followed by archive recovery, and the latest
checkpoint is a shutdown checkpoint, and there are no more WAL records to
replay before transitioning from crash to archive recovery, we would not
immediately allow read-only connections in hot standby mode even if we
could. That's because when starting from a shutdown checkpoint, we set
lastReplayedEndRecPtr incorrectly to the record before the checkpoint
record, instead of the checkpoint record itself. We don't run the redo
routine of the shutdown checkpoint record, but starting recovery from it
goes through the same motions, so it should be considered as replayed.

Reported by Kyotaro HORIGUCHI. All versions with hot standby are affected,
so backpatch to 9.0.
src/backend/access/transam/xlog.c