diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-07-07 15:10:32 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-07-07 15:11:56 -0400 |
commit | db43ec43cc4ea68a45ee3364488285edbd790893 (patch) | |
tree | 58f2e4c4d9a586a80ee2512e7777d4f00c002236 /src/include/utils/guc_tables.h | |
parent | a392b5247870da806e511ae2aadb0464509f7afe (diff) |
Reclassify replication-related GUC variables as "master" and "standby".
Per discussion, this structure seems more understandable than what was
there before. Make config.sgml and postgresql.conf.sample agree.
In passing do a bit of editorial work on the variable descriptions.
Diffstat (limited to 'src/include/utils/guc_tables.h')
-rw-r--r-- | src/include/utils/guc_tables.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/utils/guc_tables.h b/src/include/utils/guc_tables.h index a1ca012ef9a..7f8c69fcf4d 100644 --- a/src/include/utils/guc_tables.h +++ b/src/include/utils/guc_tables.h @@ -67,8 +67,9 @@ enum config_group WAL_SETTINGS, WAL_CHECKPOINTS, WAL_ARCHIVING, - WAL_REPLICATION, - WAL_STANDBY_SERVERS, + REPLICATION, + REPLICATION_MASTER, + REPLICATION_STANDBY, QUERY_TUNING, QUERY_TUNING_METHOD, QUERY_TUNING_COST, |