Content-Length: 272182 | pFad | http://github.com/postgrespro/postgres/commit/326b6f009f9f76afbbcd39d751e07822fe453730
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
{
Fetched URL: http://github.com/postgrespro/postgres/commit/326b6f009f9f76afbbcd39d751e07822fe453730
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
0 commit comments