diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-04-04 16:13:01 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-04-04 16:25:52 -0400 |
commit | 240067b3b0ff989d2b28f4f917f7958f2ec76b05 (patch) | |
tree | 385e0e13abda1024fc6a5cd8a81583a3a86366bd /src/backend/replication/syncrep.c | |
parent | fc3459d70c5d842fe6519522649c8a47454f25bb (diff) | |
download | postgresql-240067b3b0ff989d2b28f4f917f7958f2ec76b05.tar.gz postgresql-240067b3b0ff989d2b28f4f917f7958f2ec76b05.zip |
Merge synchronous_replication setting into synchronous_commit.
This means one less thing to configure when setting up synchronous
replication, and also avoids some ambiguity around what the behavior
should be when the settings of these variables conflict.
Fujii Masao, with additional hacking by me.
Diffstat (limited to 'src/backend/replication/syncrep.c')
-rw-r--r-- | src/backend/replication/syncrep.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/replication/syncrep.c b/src/backend/replication/syncrep.c index 17c255480eb..0d338146510 100644 --- a/src/backend/replication/syncrep.c +++ b/src/backend/replication/syncrep.c @@ -63,7 +63,6 @@ #include "utils/ps_status.h" /* User-settable parameters for sync rep */ -bool synchronous_replication = false; /* Only set in user backends */ char *SyncRepStandbyNames; #define SyncStandbysDefined() \ |