mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
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:
@ -8383,7 +8383,7 @@ LogCheckpointStart(int flags, bool restartpoint)
|
|||||||
(flags & CHECKPOINT_IMMEDIATE) ? " immediate" : "",
|
(flags & CHECKPOINT_IMMEDIATE) ? " immediate" : "",
|
||||||
(flags & CHECKPOINT_FORCE) ? " force" : "",
|
(flags & CHECKPOINT_FORCE) ? " force" : "",
|
||||||
(flags & CHECKPOINT_WAIT) ? " wait" : "",
|
(flags & CHECKPOINT_WAIT) ? " wait" : "",
|
||||||
(flags & CHECKPOINT_CAUSE_XLOG) ? " xlog" : "",
|
(flags & CHECKPOINT_CAUSE_XLOG) ? " wal" : "",
|
||||||
(flags & CHECKPOINT_CAUSE_TIME) ? " time" : "",
|
(flags & CHECKPOINT_CAUSE_TIME) ? " time" : "",
|
||||||
(flags & CHECKPOINT_FLUSH_ALL) ? " flush-all" : "");
|
(flags & CHECKPOINT_FLUSH_ALL) ? " flush-all" : "");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user