We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent80e26ca commit5717f3aCopy full SHA for 5717f3a
src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
37
*
38
39
* IDENTIFICATION
40
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.571 2009/02/18 15:58:41 heikki Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.572 2009/02/19 16:43:13 heikki Exp $
41
42
* NOTES
43
@@ -2652,7 +2652,8 @@ PostmasterStateMachine(void)
2652
if (pmState==PM_RECOVERY&&RecoveryStatus >=RecoveryConsistent)
2653
{
2654
/*
2655
- * Go to shutdown mode if a shutdown request was pending.
+ * Recovery has reached a consistent recovery point. Go to shutdown
2656
+ * mode if a shutdown request was pending.
2657
*/
2658
if (Shutdown>NoShutdown)
2659
@@ -2661,10 +2662,6 @@ PostmasterStateMachine(void)
2661
2662
}
2663
else
2664
-/*
2665
- * Startup process has entered recovery. We consider that good
2666
- * enough to reset FatalError.
2667
- */
2668
pmState=PM_RECOVERY_CONSISTENT;
2669
2670