]> 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:57:32 +0000 (13:57 +0200)
commit931dc26b0d2ba9b2d174119b7ff277b977d03619
treeba33141810f04adfac21ffc611a35078bb392b43
parent03e6423fc1eb45af18d49fee741a5536873ff626
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