diff options
author | David Rowley <drowley@postgresql.org> | 2024-05-17 00:39:15 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2024-05-17 00:39:15 +1200 |
commit | fa65a022db26bc446fb67ce1d7ac543fa4bb72e4 (patch) | |
tree | 727550cb8cd85c513bba46ba3ac98becccc05b72 /doc/src | |
parent | 94af84f00c5fd3ea840759d85a73204d64e28248 (diff) | |
download | postgresql-fa65a022db26bc446fb67ce1d7ac543fa4bb72e4.tar.gz postgresql-fa65a022db26bc446fb67ce1d7ac543fa4bb72e4.zip |
Doc: use true|false rather than on|off for "failover" option
The CREATE SUBSCRIPTION documentation mentions "false" is the default
option, so let's use true|false rather than on|off in the text which
talks about this option in the ALTER SUBSCRIPTION page.
The other boolean options mentioned in create_subscription.sgml use true
and false so it makes sense to be consistent with these. The "failover"
option is new to v17.
Author: Peter Smith
Discussion: https://postgr.es/m/CAHut+Ps-RqrggaJU5w85BbeQzw9CLmmLgADVJoJ=xx_4D5CWvw@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/alter_subscription.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_subscription.sgml b/doc/src/sgml/ref/alter_subscription.sgml index a78c1c3a478..476f1956223 100644 --- a/doc/src/sgml/ref/alter_subscription.sgml +++ b/doc/src/sgml/ref/alter_subscription.sgml @@ -69,7 +69,7 @@ ALTER SUBSCRIPTION <replaceable class="parameter">name</replaceable> RENAME TO < Commands <command>ALTER SUBSCRIPTION ... REFRESH PUBLICATION</command>, <command>ALTER SUBSCRIPTION ... {SET|ADD|DROP} PUBLICATION ...</command> with <literal>refresh</literal> option as <literal>true</literal> and - <command>ALTER SUBSCRIPTION ... SET (failover = on|off)</command> + <command>ALTER SUBSCRIPTION ... SET (failover = true|false)</command> cannot be executed inside a transaction block. These commands also cannot be executed when the subscription has |