diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-04-24 09:19:59 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-04-24 09:19:59 +0200 |
commit | 286eea5d3ae33a8c22d46a051f8ac6069c8b779d (patch) | |
tree | a8c4ba21f88deba250a52279f8ee9c43f092a25e /doc/src | |
parent | f994ed89a98b9aed405c760f157a10125eb8d567 (diff) | |
download | postgresql-286eea5d3ae33a8c22d46a051f8ac6069c8b779d.tar.gz postgresql-286eea5d3ae33a8c22d46a051f8ac6069c8b779d.zip |
doc: Fix order of options on pg_createsubscriber man page
Some options were listed in an order that was inconsistent with the
--help output and everything else.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_createsubscriber.sgml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/src/sgml/ref/pg_createsubscriber.sgml b/doc/src/sgml/ref/pg_createsubscriber.sgml index 7fb51f75a45..142bffff023 100644 --- a/doc/src/sgml/ref/pg_createsubscriber.sgml +++ b/doc/src/sgml/ref/pg_createsubscriber.sgml @@ -214,21 +214,6 @@ PostgreSQL documentation </varlistentry> <varlistentry> - <term><option>--subscription=<replaceable class="parameter">name</replaceable></option></term> - <listitem> - <para> - The subscription name to set up the logical replication. Multiple - subscriptions can be specified by writing multiple - <option>--subscription</option> switches. The number of subscription - names must match the number of specified databases, otherwise an error - is reported. The order of the multiple subscription name switches must - match the order of database switches. If this option is not specified, - a generated name is assigned to the subscription name. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><option>--replication-slot=<replaceable class="parameter">name</replaceable></option></term> <listitem> <para> @@ -245,12 +230,16 @@ PostgreSQL documentation </varlistentry> <varlistentry> - <term><option>-?</option></term> - <term><option>--help</option></term> + <term><option>--subscription=<replaceable class="parameter">name</replaceable></option></term> <listitem> <para> - Show help about <application>pg_createsubscriber</application> command - line arguments, and exit. + The subscription name to set up the logical replication. Multiple + subscriptions can be specified by writing multiple + <option>--subscription</option> switches. The number of subscription + names must match the number of specified databases, otherwise an error + is reported. The order of the multiple subscription name switches must + match the order of database switches. If this option is not specified, + a generated name is assigned to the subscription name. </para> </listitem> </varlistentry> @@ -264,6 +253,17 @@ PostgreSQL documentation </para> </listitem> </varlistentry> + + <varlistentry> + <term><option>-?</option></term> + <term><option>--help</option></term> + <listitem> + <para> + Show help about <application>pg_createsubscriber</application> command + line arguments, and exit. + </para> + </listitem> + </varlistentry> </variablelist> </para> </refsect1> |