You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Don't duplicate log_checkpoint messages for both of restart and checkpoints.
The duplication originated incdd46c7, where restartpoints wereintroduced.In LogCheckpointStart's case the duplication actually lead to thecompiler's format string checking not to be effective because theformat string wasn't constant.Arguably these messages shouldn't be elog(), but ereport() stylemessages. That'd even allow to translate the messages... But asthere's more mistakes of that kind in surrounding code, it seemsbetter to change that separately.