Commit 243bbe6e authored by Robert Haas's avatar Robert Haas

Add stray "else" that seems to have gone missing.

parent f5dc03dc
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.612 2010/06/16 00:54:16 petere Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.613 2010/06/24 16:40:45 rhaas Exp $
* *
* NOTES * NOTES
* *
...@@ -2224,11 +2224,11 @@ pmdie(SIGNAL_ARGS) ...@@ -2224,11 +2224,11 @@ pmdie(SIGNAL_ARGS)
/* only bgwriter is active in this state */ /* only bgwriter is active in this state */
pmState = PM_WAIT_BACKENDS; pmState = PM_WAIT_BACKENDS;
} }
if (pmState == PM_RUN || else if (pmState == PM_RUN ||
pmState == PM_WAIT_BACKUP || pmState == PM_WAIT_BACKUP ||
pmState == PM_WAIT_READONLY || pmState == PM_WAIT_READONLY ||
pmState == PM_WAIT_BACKENDS || pmState == PM_WAIT_BACKENDS ||
pmState == PM_HOT_STANDBY) pmState == PM_HOT_STANDBY)
{ {
ereport(LOG, ereport(LOG,
(errmsg("aborting any active transactions"))); (errmsg("aborting any active transactions")));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment