diff options
| author | Simon Riggs | 2010-04-23 20:21:31 +0000 |
|---|---|---|
| committer | Simon Riggs | 2010-04-23 20:21:31 +0000 |
| commit | 491d1ea5b3605809ec1103e939b3324acc9a2516 (patch) | |
| tree | 38842e52819ba421fa9a096e76ff9f2e22d3ddf5 /src/include | |
| parent | 6ca23b1a29497d496266e2ad47954d4fbc98065d (diff) | |
Previous patch revoked following objections.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/pg_control.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h index 4637610af79..7342468d055 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.52 2010/04/23 19:57:19 sriggs Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_control.h,v 1.53 2010/04/23 20:21:31 sriggs Exp $ * *------------------------------------------------------------------------- */ @@ -45,7 +45,7 @@ typedef struct CheckPoint int MaxConnections; int max_prepared_xacts; int max_locks_per_xact; - int XLogModeFlags; + bool XLogStandbyInfoMode; /* * Oldest XID still running. This is only needed to initialize hot standby @@ -65,10 +65,6 @@ typedef struct CheckPoint #define XLOG_BACKUP_END 0x50 #define XLOG_UNLOGGED 0x60 -/* XLogModeFlags */ -#define XLOG_MODE_ARCHIVING (1 << 0) -#define XLOG_MODE_STREAMING (1 << 1) -#define XLOG_MODE_HOT_STANDBY (1 << 2) /* System status indicator */ typedef enum DBState |
