Support --fast-checkpoint

This commit is contained in:
Ian Barwick
2015-03-20 15:24:23 +09:00
parent 5b4f832f3b
commit 3e2c9ed410
4 changed files with 38 additions and 15 deletions

View File

@@ -80,6 +80,7 @@ typedef struct
bool ignore_rsync_warn;
bool initdb_no_pwprompt;
bool rsync_only;
bool fast_checkpoint;
char masterport[MAXLEN];
char localport[MAXLEN];
@@ -92,7 +93,7 @@ typedef struct
char min_recovery_apply_delay[MAXLEN];
} t_runtime_options;
#define T_RUNTIME_OPTIONS_INITIALIZER { "", "", "", "", "", "", "", DEFAULT_WAL_KEEP_SEGMENTS, false, false, false, false, false, false, "", "", 0, "", "" }
#define T_RUNTIME_OPTIONS_INITIALIZER { "", "", "", "", "", "", "", DEFAULT_WAL_KEEP_SEGMENTS, false, false, false, false, false, false, false, "", "", 0, "", "" }
extern char repmgr_schema[MAXLEN];