diff --git a/src/bin/pg_controldata/pg_controldata.c b/src/bin/pg_controldata/pg_controldata.c index 704f72d3c5..32e1d81bf2 100644 --- a/src/bin/pg_controldata/pg_controldata.c +++ b/src/bin/pg_controldata/pg_controldata.c @@ -273,6 +273,8 @@ main(int argc, char *argv[]) ControlFile.checkPointCopy.oldestMultiDB); printf(_("Latest checkpoint's oldestCommitTs: %u\n"), ControlFile.checkPointCopy.oldestCommitTs); + printf(_("Latest checkpoint's newestCommitTs: %u\n"), + ControlFile.checkPointCopy.newestCommitTs); printf(_("Time of latest checkpoint: %s\n"), ckpttime_str); printf(_("Fake LSN counter for unlogged rels: %X/%X\n"), diff --git a/src/bin/pg_resetxlog/pg_resetxlog.c b/src/bin/pg_resetxlog/pg_resetxlog.c index c8c1ac3288..d7ac2ba271 100644 --- a/src/bin/pg_resetxlog/pg_resetxlog.c +++ b/src/bin/pg_resetxlog/pg_resetxlog.c @@ -665,9 +665,9 @@ PrintControlValues(bool guessed) ControlFile.checkPointCopy.oldestMulti); printf(_("Latest checkpoint's oldestMulti's DB: %u\n"), ControlFile.checkPointCopy.oldestMultiDB); - printf(_("Latest checkpoint's oldest CommitTs: %u\n"), + printf(_("Latest checkpoint's oldestCommitTs: %u\n"), ControlFile.checkPointCopy.oldestCommitTs); - printf(_("Latest checkpoint's newest CommitTs: %u\n"), + printf(_("Latest checkpoint's newestCommitTs: %u\n"), ControlFile.checkPointCopy.newestCommitTs); printf(_("Maximum data alignment: %u\n"), ControlFile.maxAlign);