diff options
author | Joe Conway <mail@joeconway.com> | 2016-02-12 14:23:59 -0800 |
---|---|---|
committer | Joe Conway <mail@joeconway.com> | 2016-02-12 14:23:59 -0800 |
commit | 59a884e9854cb3cb7338394fb5f856209b040fb3 (patch) | |
tree | 92d9fe6093f0a2f89befefa98a9bb918b0189631 /src/backend/access/transam/xlog.c | |
parent | e84e06d2b3fc48c514fd44f7ac390eb5f3e20d72 (diff) | |
download | postgresql-59a884e9854cb3cb7338394fb5f856209b040fb3.tar.gz postgresql-59a884e9854cb3cb7338394fb5f856209b040fb3.zip |
Change delimiter used for display of NextXID
NextXID has been rendered in the form of a pg_lsn even though it
really is not. This can cause confusion, so change the format from
%u/%u to %u:%u, per discussion on hackers.
Complaint by me, patch by me and Bruce, reviewed by Michael Paquier
and Alvaro. Applied to HEAD only.
Author: Joe Conway, Bruce Momjian
Reviewed-by: Michael Paquier, Alvaro Herrera
Backpatch-through: master
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index e98c89f7aa5..8d480f7ce24 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6283,7 +6283,7 @@ StartupXLOG(void) (uint32) (checkPoint.redo >> 32), (uint32) checkPoint.redo, wasShutdown ? "TRUE" : "FALSE"))); ereport(DEBUG1, - (errmsg_internal("next transaction ID: %u/%u; next OID: %u", + (errmsg_internal("next transaction ID: %u:%u; next OID: %u", checkPoint.nextXidEpoch, checkPoint.nextXid, checkPoint.nextOid))); ereport(DEBUG1, |