Skip to content

Commit 069aa39

Browse files
XidEpoch++ if wraparound during checkpoint.
If wal_level = hot_standby we update the checkpoint nextxid, though in the case where a wraparound occurred half-way through a checkpoint we would neglect updating the epoch also. Updating the nextxid is arguably the wrong thing to do, but changing that may introduce subtle bugs into hot standby startup, while updating the value doesn't cause any known bugs yet. Minimal fix now to HEAD and backbranches, wider fix later in HEAD. Bug reported in #6291 by Daniel Farina and slightly differently in Cause analysis and recommended fixes from Tom Lane and Andres Freund. Applied patch is minimal version of Andres Freund's work.
1 parent ceee108 commit 069aa39

File tree

1 file changed

+8
-1
lines changed
  • src/backend/access/transam

1 file changed

+8
-1
lines changed

src/backend/access/transam/xlog.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7423,10 +7423,17 @@ CreateCheckPoint(int flags)
74237423
* If we are shutting down, or Startup process is completing crash
74247424
* recovery we don't need to write running xact data.
74257425
*
7426-
* Update checkPoint.nextXid since we have a later value
7426+
* Update checkPoint.nextXid since we may have a later value. If we
7427+
* do update the value, and we have wrapped, increment epoch also.
74277428
*/
74287429
if (!shutdown && XLogStandbyInfoActive())
7430+
{
7431+
TransactionId prevXid = checkPoint.nextXid;
7432+
74297433
LogStandbySnapshot(&checkPoint.nextXid);
7434+
if (checkPoint.nextXid < prevXid)
7435+
checkPoint.nextXidEpoch++;
7436+
}
74307437

74317438
START_CRIT_SECTION();
74327439

0 commit comments

Comments
 (0)