diff options
| author | Magnus Hagander <magnus@hagander.net> | 2011-01-23 23:39:18 +0100 |
|---|---|---|
| committer | Magnus Hagander <magnus@hagander.net> | 2011-01-23 23:39:18 +0100 |
| commit | e5487f65fdbd05716ade642a3ae1c5c6e85b6f22 (patch) | |
| tree | 0d9bcc4b54c56feaf93c3a8068d86ce2a228e7fe /src/include/replication/replnodes.h | |
| parent | 39e911e28a7a998d9439c0f5886c97fbbfc72a75 (diff) | |
Make walsender options order-independent
While doing this, also move base backup options into
a struct instead of increasing the number of parameters
to multiple functions for each new option.
Diffstat (limited to 'src/include/replication/replnodes.h')
| -rw-r--r-- | src/include/replication/replnodes.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/replication/replnodes.h b/src/include/replication/replnodes.h index fc814146baf..6fc037580fa 100644 --- a/src/include/replication/replnodes.h +++ b/src/include/replication/replnodes.h @@ -45,9 +45,7 @@ typedef struct IdentifySystemCmd typedef struct BaseBackupCmd { NodeTag type; - char *label; - bool progress; - bool fastcheckpoint; + List *options; } BaseBackupCmd; |
