diff options
author | Amit Kapila <akapila@postgresql.org> | 2023-04-08 09:42:50 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2023-04-08 09:42:50 +0530 |
commit | d73c285af5c29a0b486643b77350bc23fbb6114c (patch) | |
tree | d1df292e901a03587524117640c4630dfe628127 | |
parent | db6957bae8d7716785aa3748b25a9a4b7c3ff304 (diff) | |
download | postgresql-d73c285af5c29a0b486643b77350bc23fbb6114c.tar.gz postgresql-d73c285af5c29a0b486643b77350bc23fbb6114c.zip |
Doc: Fix the datatype of the newly added SUBSCRIPTION options.
In docs, the datatype of "password_required" and "run_as_owner" was
incorrectly specified as a string.
Author: Amit Kapila
Reviewed-by: Sawada Masahiko
Discussion: https://postgr.es/m/CAHut+Pu=pnJf=SS1583pknSQ3CbOqLCkWcJCQYt6zxTagHEdmw@mail.gmail.com
-rw-r--r-- | doc/src/sgml/ref/create_subscription.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_subscription.sgml b/doc/src/sgml/ref/create_subscription.sgml index 68aa2b47f2d..4c2db4c30db 100644 --- a/doc/src/sgml/ref/create_subscription.sgml +++ b/doc/src/sgml/ref/create_subscription.sgml @@ -354,7 +354,7 @@ CREATE SUBSCRIPTION <replaceable class="parameter">subscription_name</replaceabl </varlistentry> <varlistentry id="sql-createsubscription-with-password-required"> - <term><literal>password_required</literal> (<type>string</type>)</term> + <term><literal>password_required</literal> (<type>boolean</type>)</term> <listitem> <para> Specifies whether connections to the publisher made as a result @@ -367,7 +367,7 @@ CREATE SUBSCRIPTION <replaceable class="parameter">subscription_name</replaceabl </varlistentry> <varlistentry id="sql-createsubscription-with-run-as-owner"> - <term><literal>run_as_owner</literal> (<type>string</type>)</term> + <term><literal>run_as_owner</literal> (<type>boolean</type>)</term> <listitem> <para> If true, all replication actions are performed as the subscription |