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
This commit is contained in:
Peter Eisentraut 2018-12-30 22:23:01 +01:00
parent 0a6ea4001a
commit 60d99797bf
1 changed files with 1 additions and 1 deletions

View File

@ -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" : "");
}