diff options
| author | Robert Haas <rhaas@postgresql.org> | 2010-06-03 03:20:00 +0000 |
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2010-06-03 03:20:00 +0000 |
| commit | d561430b660a79ca20c2e335f56e4dc68f8848b4 (patch) | |
| tree | 264e05f29a007db4d7691ef75e15c7ebee4b40fc /src/include | |
| parent | f0c437cf548bf80bc2bd203a745f379052a1bda9 (diff) | |
On clean shutdown during recovery, don't warn about possible corruption.
Fujii Masao. Review by Heikki Linnakangas and myself.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/pg_control.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h index 8deef6d354d..e61f213a624 100644 --- a/src/include/catalog/pg_control.h +++ b/src/include/catalog/pg_control.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/pg_control.h,v 1.54 2010/04/28 16:10:43 heikki Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_control.h,v 1.55 2010/06/03 03:20:00 rhaas Exp $ * *------------------------------------------------------------------------- */ @@ -65,6 +65,7 @@ typedef enum DBState { DB_STARTUP = 0, DB_SHUTDOWNED, + DB_SHUTDOWNED_IN_RECOVERY, DB_SHUTDOWNING, DB_IN_CRASH_RECOVERY, DB_IN_ARCHIVE_RECOVERY, |
