From 0e0bbeb6501f5b1a7a5f0e4109dbf8a8152de249 Mon Sep 17 00:00:00 2001 From: Justin Pryzby Date: Sat, 8 Feb 2020 09:16:14 -0600 Subject: [PATCH v2 2/4] Update PS display following replay of last xlog.. ..otherwise it shows "recovering " for the duration of the recovery checkpoint. --- src/backend/access/transam/xlog.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 0183cae9a9..3d8220ba78 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -8892,6 +8892,13 @@ CreateCheckPoint(int flags) if (log_checkpoints) LogCheckpointStart(flags, false); + if (flags & CHECKPOINT_END_OF_RECOVERY) + set_ps_display("(end-of-recovery checkpoint)"); + else if (flags & CHECKPOINT_IS_SHUTDOWN) + set_ps_display("(shutdown checkpoint)"); + else + set_ps_display("(checkpoint)"); + TRACE_POSTGRESQL_CHECKPOINT_START(flags); /* @@ -9106,6 +9113,7 @@ CreateCheckPoint(int flags) /* Real work is done, but log and update stats before releasing lock. */ LogCheckpointEnd(false); + set_ps_display(""); TRACE_POSTGRESQL_CHECKPOINT_DONE(CheckpointStats.ckpt_bufs_written, NBuffers, @@ -9349,6 +9357,11 @@ CreateRestartPoint(int flags) if (log_checkpoints) LogCheckpointStart(flags, true); + if (flags & CHECKPOINT_IS_SHUTDOWN) + set_ps_display("(shutdown restartpoint)"); + else + set_ps_display("(restartpoint)"); + CheckPointGuts(lastCheckPoint.redo, flags); /* @@ -9466,6 +9479,7 @@ CreateRestartPoint(int flags) /* Real work is done, but log and update before releasing lock. */ LogCheckpointEnd(true); + set_ps_display(""); xtime = GetLatestXTime(); ereport((log_checkpoints ? LOG : DEBUG2), -- 2.17.0