aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2018-12-30 22:23:01 +0100
committerPeter Eisentraut <peter@eisentraut.org>2018-12-30 22:23:01 +0100
commit60d99797bfb07f8042a8b82c161500f6e4a500ec (patch)
treed3cef1193de9f29d20a7f2944682f88ab287a37a /src/backend/access/transam/xlog.c
parent0a6ea4001a9dff64e9ba66f68855a59a1bf69bc9 (diff)
downloadpostgresql-60d99797bfb07f8042a8b82c161500f6e4a500ec.tar.gz
postgresql-60d99797bfb07f8042a8b82c161500f6e4a500ec.zip
Change "checkpoint starting" message to use "wal"
This catches up with the recent renaming of all user-facing mentions of "xlog" to "wal". Discussion: https://www.postgresql.org/message-id/flat/20181129084708.GA9562%40msg.credativ.de
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r--src/backend/access/transam/xlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 57298678793..a28be4f7db8 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -8383,7 +8383,7 @@ LogCheckpointStart(int flags, bool restartpoint)
(flags & CHECKPOINT_IMMEDIATE) ? " immediate" : "",
(flags & CHECKPOINT_FORCE) ? " force" : "",
(flags & CHECKPOINT_WAIT) ? " wait" : "",
- (flags & CHECKPOINT_CAUSE_XLOG) ? " xlog" : "",
+ (flags & CHECKPOINT_CAUSE_XLOG) ? " wal" : "",
(flags & CHECKPOINT_CAUSE_TIME) ? " time" : "",
(flags & CHECKPOINT_FLUSH_ALL) ? " flush-all" : "");
}