]> granicus.if.org Git - postgresql/commit
Fix commit timestamp initialization
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 11 Dec 2015 17:30:43 +0000 (14:30 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 11 Dec 2015 17:30:43 +0000 (14:30 -0300)
commit69e7235c93e2965cc0e17186bd044e4c54997c19
treedc39e111afe0831f014a28aadfb7e17930291bf0
parenta351705d8a7fbbc98c2449786d2ddfa845f21b6a
Fix commit timestamp initialization

This module needs explicit initialization in order to replay WAL records
in recovery, but we had broken this recently following changes to make
other (stranger) scenarios work correctly.  To fix, rework the
initialization sequence so that it always takes place before WAL replay
commences for both master and standby.

I could have gone for a more localized fix that just added a "startup"
call for the master server, but it seemed better to restructure the
existing callers as well so that the whole thing made more sense.  As a
drawback, there is more control logic in xlog.c now than previously, but
doing otherwise meant passing down the ControlFile flag, which seemed
uglier as a whole.

This also meant adding a check to not re-execute ActivateCommitTs if it
had already been called.

Reported by Fujii Masao.

Backpatch to 9.5.
src/backend/access/transam/commit_ts.c
src/backend/access/transam/xlog.c
src/include/access/commit_ts.h