1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

After fast promotion use CHECKPOINT_FORCE

Not necessary for correctness, just to make
log_checkpoints output look less singular.

Requested by Fujii Masao
This commit is contained in:
Simon Riggs 2013-05-21 21:27:12 +01:00
parent 75a192638f
commit 22a27ef113

View File

@ -6104,7 +6104,7 @@ StartupXLOG(void)
* than is appropriate now that we're not in standby mode anymore. * than is appropriate now that we're not in standby mode anymore.
*/ */
if (fast_promoted) if (fast_promoted)
RequestCheckpoint(0); RequestCheckpoint(CHECKPOINT_FORCE);
} }
/* /*