diff --git a/doc/src/sgml/ref/pg_basebackup.sgml b/doc/src/sgml/ref/pg_basebackup.sgml index cec66559ce3bfe7260a86e807a8078704f6cf104..a951d6b0f043961b998b1c76851b9f6f3e6e22b0 100644 --- a/doc/src/sgml/ref/pg_basebackup.sgml +++ b/doc/src/sgml/ref/pg_basebackup.sgml @@ -188,6 +188,17 @@ PostgreSQL documentation </listitem> </varlistentry> + <varlistentry> + <term><option>-x</option></term> + <term><option>--xlog</option></term> + <listitem> + <para> + Using this option is equivalent of using <literal>-X</literal> with + method <literal>fetch</literal>. + </para> + </listitem> + </varlistentry> + <varlistentry> <term><option>-X <replaceable class="parameter">method</replaceable></option></term> <term><option>--xlog-method=<replaceable class="parameter">method</replaceable></option></term> @@ -240,17 +251,6 @@ PostgreSQL documentation </listitem> </varlistentry> - <varlistentry> - <term><option>-x</option></term> - <term><option>--xlog</option></term> - <listitem> - <para> - Using this option is equivalent of using <literal>-X</literal> with - method <literal>fetch</literal>. - </para> - </listitem> - </varlistentry> - <varlistentry> <term><option>-z</option></term> <term><option>--gzip</option></term> @@ -344,20 +344,6 @@ PostgreSQL documentation The following command-line options control the database connection parameters. <variablelist> - <varlistentry> - <term><option>-s <replaceable class="parameter">interval</replaceable></option></term> - <term><option>--status-interval=<replaceable class="parameter">interval</replaceable></option></term> - <listitem> - <para> - Specifies the number of seconds between status packets sent back to the - server. This is required when streaming the transaction log (using - <literal>--xlog=stream</literal>) if replication timeout is configured - on the server, and allows for easier monitoring. A value of zero disables - the status updates completely. The default value is 10 seconds. - </para> - </listitem> - </varlistentry> - <varlistentry> <term><option>-h <replaceable class="parameter">host</replaceable></option></term> <term><option>--host=<replaceable class="parameter">host</replaceable></option></term> @@ -385,6 +371,20 @@ PostgreSQL documentation </listitem> </varlistentry> + <varlistentry> + <term><option>-s <replaceable class="parameter">interval</replaceable></option></term> + <term><option>--status-interval=<replaceable class="parameter">interval</replaceable></option></term> + <listitem> + <para> + Specifies the number of seconds between status packets sent back to the + server. This is required when streaming the transaction log (using + <literal>--xlog=stream</literal>) if replication timeout is configured + on the server, and allows for easier monitoring. A value of zero disables + the status updates completely. The default value is 10 seconds. + </para> + </listitem> + </varlistentry> + <varlistentry> <term><option>-U <replaceable>username</replaceable></option></term> <term><option>--username=<replaceable class="parameter">username</replaceable></option></term> diff --git a/doc/src/sgml/ref/pg_receivexlog.sgml b/doc/src/sgml/ref/pg_receivexlog.sgml index 64cb81d2ef86e2d4ba5cbcc8b5909a93dd836637..7f62fd9e6156133e238d9c01a7efbcba78738114 100644 --- a/doc/src/sgml/ref/pg_receivexlog.sgml +++ b/doc/src/sgml/ref/pg_receivexlog.sgml @@ -122,19 +122,6 @@ PostgreSQL documentation The following command-line options control the database connection parameters. <variablelist> - <varlistentry> - <term><option>-s <replaceable class="parameter">interval</replaceable></option></term> - <term><option>--status-interval=<replaceable class="parameter">interval</replaceable></option></term> - <listitem> - <para> - Specifies the number of seconds between status packets sent back to the - server. This is required if replication timeout is configured on the - server, and allows for easier monitoring. A value of zero disables the - status updates completely. The default value is 10 seconds. - </para> - </listitem> - </varlistentry> - <varlistentry> <term><option>-h <replaceable class="parameter">host</replaceable></option></term> <term><option>--host=<replaceable class="parameter">host</replaceable></option></term> @@ -162,6 +149,19 @@ PostgreSQL documentation </listitem> </varlistentry> + <varlistentry> + <term><option>-s <replaceable class="parameter">interval</replaceable></option></term> + <term><option>--status-interval=<replaceable class="parameter">interval</replaceable></option></term> + <listitem> + <para> + Specifies the number of seconds between status packets sent back to the + server. This is required if replication timeout is configured on the + server, and allows for easier monitoring. A value of zero disables the + status updates completely. The default value is 10 seconds. + </para> + </listitem> + </varlistentry> + <varlistentry> <term><option>-U <replaceable>username</replaceable></option></term> <term><option>--username=<replaceable class="parameter">username</replaceable></option></term> diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index a7063a80e8eac66797b340ab1c0103cec57cda22..cbefdf4fef8a0d9464902576107f87fc9d50b655 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -121,10 +121,10 @@ usage(void) printf(_(" -V, --version output version information, then exit\n")); printf(_(" -?, --help show this help, then exit\n")); printf(_("\nConnection options:\n")); - printf(_(" -s, --status-interval=INTERVAL\n" - " time between status packets sent to server (in seconds)\n")); printf(_(" -h, --host=HOSTNAME database server host or socket directory\n")); printf(_(" -p, --port=PORT database server port number\n")); + printf(_(" -s, --status-interval=INTERVAL\n" + " time between status packets sent to server (in seconds)\n")); printf(_(" -U, --username=NAME connect as specified database user\n")); printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -W, --password force password prompt (should happen automatically)\n")); diff --git a/src/bin/pg_basebackup/pg_receivexlog.c b/src/bin/pg_basebackup/pg_receivexlog.c index df971b24f492ee0071d7456d5b85620674800a48..c004162cf6e058ea9917dbe2e927fa80ab16cbd6 100644 --- a/src/bin/pg_basebackup/pg_receivexlog.c +++ b/src/bin/pg_basebackup/pg_receivexlog.c @@ -65,10 +65,10 @@ usage(void) printf(_(" -V, --version output version information, then exit\n")); printf(_(" -?, --help show this help, then exit\n")); printf(_("\nConnection options:\n")); - printf(_(" -s, --status-interval=INTERVAL\n" - " time between status packets sent to server (in seconds)\n")); printf(_(" -h, --host=HOSTNAME database server host or socket directory\n")); printf(_(" -p, --port=PORT database server port number\n")); + printf(_(" -s, --status-interval=INTERVAL\n" + " time between status packets sent to server (in seconds)\n")); printf(_(" -U, --username=NAME connect as specified database user\n")); printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -W, --password force password prompt (should happen automatically)\n"));