Print new track_commit_timestamp in rm_desc of a parameter-change record.
Michael Paquier
This commit is contained in:
parent
c846e67c46
commit
326b6f009f
@ -110,13 +110,15 @@ xlog_desc(StringInfo buf, XLogReaderState *record)
|
|||||||
|
|
||||||
appendStringInfo(buf, "max_connections=%d max_worker_processes=%d "
|
appendStringInfo(buf, "max_connections=%d max_worker_processes=%d "
|
||||||
"max_prepared_xacts=%d max_locks_per_xact=%d "
|
"max_prepared_xacts=%d max_locks_per_xact=%d "
|
||||||
"wal_level=%s wal_log_hints=%s",
|
"wal_level=%s wal_log_hints=%s "
|
||||||
|
"track_commit_timestamps=%s",
|
||||||
xlrec.MaxConnections,
|
xlrec.MaxConnections,
|
||||||
xlrec.max_worker_processes,
|
xlrec.max_worker_processes,
|
||||||
xlrec.max_prepared_xacts,
|
xlrec.max_prepared_xacts,
|
||||||
xlrec.max_locks_per_xact,
|
xlrec.max_locks_per_xact,
|
||||||
wal_level_str,
|
wal_level_str,
|
||||||
xlrec.wal_log_hints ? "on" : "off");
|
xlrec.wal_log_hints ? "on" : "off",
|
||||||
|
xlrec.track_commit_timestamp ? "on" : "off");
|
||||||
}
|
}
|
||||||
else if (info == XLOG_FPW_CHANGE)
|
else if (info == XLOG_FPW_CHANGE)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user