aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-02-12 13:10:59 +0900
committerMichael Paquier <michael@paquier.xyz>2019-02-12 13:10:59 +0900
commitb7ec820559b68df446c01fe1497bd24e9091f559 (patch)
tree1277eb3136251dedcae17ca9d91529f5bd66262e /src
parentb07c695d9c34cccfa0138ca7f4c76547a24c74e1 (diff)
downloadpostgresql-b7ec820559b68df446c01fe1497bd24e9091f559.tar.gz
postgresql-b7ec820559b68df446c01fe1497bd24e9091f559.zip
Fix description of WAL record XLOG_PARAMETER_CHANGE
max_wal_senders and max_worker_processes got reversed in the output generated because of ea92368. Reported-by: Kevin Hale Boyes Discussion: https://postgr.es/m/CADAecHVAD4=26KAx4nj5DBvxqqvJkuwsy+riiiNhQqwnZg2K8Q@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/rmgrdesc/xlogdesc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/rmgrdesc/xlogdesc.c b/src/backend/access/rmgrdesc/xlogdesc.c
index 0ad4454a8c6..bfad284be08 100644
--- a/src/backend/access/rmgrdesc/xlogdesc.c
+++ b/src/backend/access/rmgrdesc/xlogdesc.c
@@ -114,8 +114,8 @@ xlog_desc(StringInfo buf, XLogReaderState *record)
"max_locks_per_xact=%d wal_level=%s "
"wal_log_hints=%s track_commit_timestamp=%s",
xlrec.MaxConnections,
- xlrec.max_wal_senders,
xlrec.max_worker_processes,
+ xlrec.max_wal_senders,
xlrec.max_prepared_xacts,
xlrec.max_locks_per_xact,
wal_level_str,