diff options
author | Daniel Gustafsson | 2021-12-01 13:17:24 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2021-12-01 13:17:24 +0000 |
commit | 018b800245c5d4db30d204fa42fada05a64eb287 (patch) | |
tree | 9919aa9f2107a42a24dde23f5af9d8eab50e3388 /src/backend/postmaster/checkpointer.c | |
parent | 7799d4e3bdd14c90989d829a9b24e73d4ff4d4ad (diff) |
Remove mention of TimeLineID update from comments
Commit 4a92a1c3d removed the TimeLineID update from RecoveryInProgress,
update comments accordingly.
Author: Amul Sul <sulamul@gmail.com>
Discussion: https://postgr.es/m/CAAJ_b96wyzs8N45jc-kYd-bTE02hRWQieLZRpsUtNbhap7_PuQ@mail.gmail.com
Diffstat (limited to 'src/backend/postmaster/checkpointer.c')
-rw-r--r-- | src/backend/postmaster/checkpointer.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/postmaster/checkpointer.c b/src/backend/postmaster/checkpointer.c index be7366379d0..25a18b7a14b 100644 --- a/src/backend/postmaster/checkpointer.c +++ b/src/backend/postmaster/checkpointer.c @@ -384,11 +384,7 @@ CheckpointerMain(void) bool ckpt_performed = false; bool do_restartpoint; - /* - * Check if we should perform a checkpoint or a restartpoint. As a - * side-effect, RecoveryInProgress() initializes TimeLineID if - * it's not set yet. - */ + /* Check if we should perform a checkpoint or a restartpoint. */ do_restartpoint = RecoveryInProgress(); /* |