summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_control.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/catalog/pg_control.h')
-rw-r--r--src/include/catalog/pg_control.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h
index b701e2b511..a0646f7b2e 100644
--- a/src/include/catalog/pg_control.h
+++ b/src/include/catalog/pg_control.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_control.h,v 1.4 2001/10/25 05:49:57 momjian Exp $
+ * $Id: pg_control.h,v 1.5 2001/10/28 06:26:00 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -51,11 +51,11 @@ typedef struct CheckPoint
/* System status indicator */
typedef enum DBState
{
- DB_STARTUP = 0,
- DB_SHUTDOWNED,
- DB_SHUTDOWNING,
- DB_IN_RECOVERY,
- DB_IN_PRODUCTION
+ DB_STARTUP = 0,
+ DB_SHUTDOWNED,
+ DB_SHUTDOWNING,
+ DB_IN_RECOVERY,
+ DB_IN_PRODUCTION
} DBState;
#define LOCALE_NAME_BUFLEN 128
@@ -110,4 +110,5 @@ typedef struct ControlFileData
char lc_collate[LOCALE_NAME_BUFLEN];
char lc_ctype[LOCALE_NAME_BUFLEN];
} ControlFileData;
+
#endif /* PG_CONTROL_H */