10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c846e67 commit 326b6f0Copy full SHA for 326b6f0
src/backend/access/rmgrdesc/xlogdesc.c
@@ -110,13 +110,15 @@ xlog_desc(StringInfo buf, XLogReaderState *record)
110
111
appendStringInfo(buf, "max_connections=%d max_worker_processes=%d "
112
"max_prepared_xacts=%d max_locks_per_xact=%d "
113
- "wal_level=%s wal_log_hints=%s",
+ "wal_level=%s wal_log_hints=%s "
114
+ "track_commit_timestamps=%s",
115
xlrec.MaxConnections,
116
xlrec.max_worker_processes,
117
xlrec.max_prepared_xacts,
118
xlrec.max_locks_per_xact,
119
wal_level_str,
- xlrec.wal_log_hints ? "on" : "off");
120
+ xlrec.wal_log_hints ? "on" : "off",
121
+ xlrec.track_commit_timestamp ? "on" : "off");
122
}
123
else if (info == XLOG_FPW_CHANGE)
124
{
0 commit comments