Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 60d9979

Browse files
committed
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
1 parent 0a6ea40 commit 60d9979

File tree

1 file changed

+1
-1
lines changed
  • src/backend/access/transam

1 file changed

+1
-1
lines changed

src/backend/access/transam/xlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8383,7 +8383,7 @@ LogCheckpointStart(int flags, bool restartpoint)
83838383
(flags & CHECKPOINT_IMMEDIATE) ? " immediate" : "",
83848384
(flags & CHECKPOINT_FORCE) ? " force" : "",
83858385
(flags & CHECKPOINT_WAIT) ? " wait" : "",
8386-
(flags & CHECKPOINT_CAUSE_XLOG) ? " xlog" : "",
8386+
(flags & CHECKPOINT_CAUSE_XLOG) ? " wal" : "",
83878387
(flags & CHECKPOINT_CAUSE_TIME) ? " time" : "",
83888388
(flags & CHECKPOINT_FLUSH_ALL) ? " flush-all" : "");
83898389
}

0 commit comments

Comments
 (0)