diff --git a/doc/src/sgml/ref/pg_basebackup.sgml b/doc/src/sgml/ref/pg_basebackup.sgml
index cec66559ce3..a951d6b0f04 100644
--- a/doc/src/sgml/ref/pg_basebackup.sgml
+++ b/doc/src/sgml/ref/pg_basebackup.sgml
@@ -188,6 +188,17 @@ PostgreSQL documentation
+
+
+
+
+
+ Using this option is equivalent of using -X with
+ method fetch.
+
+
+
+
@@ -240,17 +251,6 @@ PostgreSQL documentation
-
-
-
-
-
- Using this option is equivalent of using -X with
- method fetch.
-
-
-
-
@@ -344,20 +344,6 @@ PostgreSQL documentation
The following command-line options control the database connection parameters.
-
-
-
-
-
- Specifies the number of seconds between status packets sent back to the
- server. This is required when streaming the transaction log (using
- --xlog=stream) 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.
-
-
-
-
@@ -385,6 +371,20 @@ PostgreSQL documentation
+
+
+
+
+
+ Specifies the number of seconds between status packets sent back to the
+ server. This is required when streaming the transaction log (using
+ --xlog=stream) 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.
+
+
+
+
diff --git a/doc/src/sgml/ref/pg_receivexlog.sgml b/doc/src/sgml/ref/pg_receivexlog.sgml
index 64cb81d2ef8..7f62fd9e615 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.
-
-
-
-
-
- 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.
-
-
-
-
@@ -162,6 +149,19 @@ PostgreSQL documentation
+
+
+
+
+
+ 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.
+
+
+
+
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c
index a7063a80e8e..cbefdf4fef8 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 df971b24f49..c004162cf6e 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"));