summaryrefslogtreecommitdiff
path: root/src/include/replication/replnodes.h
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2011-01-23 23:39:18 +0100
committerMagnus Hagander <magnus@hagander.net>2011-01-23 23:39:18 +0100
commite5487f65fdbd05716ade642a3ae1c5c6e85b6f22 (patch)
tree0d9bcc4b54c56feaf93c3a8068d86ce2a228e7fe /src/include/replication/replnodes.h
parent39e911e28a7a998d9439c0f5886c97fbbfc72a75 (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.h4
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;