diff options
author | Peter Eisentraut | 2017-06-08 16:12:31 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-06-08 16:12:31 +0000 |
commit | 7ff9812f9aef584b6ee076378d77a09a68f12d97 (patch) | |
tree | 82de63f4cbed4e12dbb7b537f663abbc0175636d /doc/src | |
parent | 0eac8e7ff7ebb807f479dd10aa7c88b799a7e319 (diff) |
Put new command-line options in alphabetical order
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_dumpall.sgml | 16 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_recvlogical.sgml | 52 | ||||
-rw-r--r-- | doc/src/sgml/ref/pgbench.sgml | 20 |
3 files changed, 44 insertions, 44 deletions
diff --git a/doc/src/sgml/ref/pg_dumpall.sgml b/doc/src/sgml/ref/pg_dumpall.sgml index b45e813486..2ab570ad4c 100644 --- a/doc/src/sgml/ref/pg_dumpall.sgml +++ b/doc/src/sgml/ref/pg_dumpall.sgml @@ -333,23 +333,23 @@ PostgreSQL documentation </varlistentry> <varlistentry> - <term><option>--no-role-passwords</option></term> + <term><option>--no-publications</option></term> <listitem> <para> - Do not dump passwords for roles. When restored, roles will have a NULL - password and authentication will always fail until the password is reset. - Since password values aren't needed when this option is specified we - use the catalog view pg_roles in preference to pg_authid, since access - to pg_authid may be restricted by security policy. + Do not dump publications. </para> </listitem> </varlistentry> <varlistentry> - <term><option>--no-publications</option></term> + <term><option>--no-role-passwords</option></term> <listitem> <para> - Do not dump publications. + Do not dump passwords for roles. When restored, roles will have a NULL + password and authentication will always fail until the password is reset. + Since password values aren't needed when this option is specified we + use the catalog view pg_roles in preference to pg_authid, since access + to pg_authid may be restricted by security policy. </para> </listitem> </varlistentry> diff --git a/doc/src/sgml/ref/pg_recvlogical.sgml b/doc/src/sgml/ref/pg_recvlogical.sgml index eaea94df8b..9c7bb1907b 100644 --- a/doc/src/sgml/ref/pg_recvlogical.sgml +++ b/doc/src/sgml/ref/pg_recvlogical.sgml @@ -114,6 +114,32 @@ PostgreSQL documentation <variablelist> <varlistentry> + <term><option>-E <replaceable>lsn</replaceable></option></term> + <term><option>--endpos=<replaceable>lsn</replaceable></option></term> + <listitem> + <para> + In <option>--start</option> mode, automatically stop replication + and exit with normal exit status 0 when receiving reaches the + specified LSN. If specified when not in <option>--start</option> + mode, an error is raised. + </para> + + <para> + If there's a record with LSN exactly equal to <replaceable>lsn</>, + the record will be output. + </para> + + <para> + The <option>--endpos</option> option is not aware of transaction + boundaries and may truncate output partway through a transaction. + Any partially output transaction will not be consumed and will be + replayed again when the slot is next read from. Individual messages + are never truncated. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>-f <replaceable>filename</replaceable></option></term> <term><option>--file=<replaceable>filename</replaceable></option></term> <listitem> @@ -163,32 +189,6 @@ PostgreSQL documentation </varlistentry> <varlistentry> - <term><option>-E <replaceable>lsn</replaceable></option></term> - <term><option>--endpos=<replaceable>lsn</replaceable></option></term> - <listitem> - <para> - In <option>--start</option> mode, automatically stop replication - and exit with normal exit status 0 when receiving reaches the - specified LSN. If specified when not in <option>--start</option> - mode, an error is raised. - </para> - - <para> - If there's a record with LSN exactly equal to <replaceable>lsn</>, - the record will be output. - </para> - - <para> - The <option>--endpos</option> option is not aware of transaction - boundaries and may truncate output partway through a transaction. - Any partially output transaction will not be consumed and will be - replayed again when the slot is next read from. Individual messages - are never truncated. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><option>--if-not-exists</option></term> <listitem> <para> diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml index 5735c48717..64b043b48a 100644 --- a/doc/src/sgml/ref/pgbench.sgml +++ b/doc/src/sgml/ref/pgbench.sgml @@ -580,6 +580,16 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</> </varlistentry> <varlistentry> + <term><option>--log-prefix=<replaceable>prefix</></option></term> + <listitem> + <para> + Set the filename prefix for the log files created by + <option>--log</>. The default is <literal>pgbench_log</>. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--progress-timestamp</option></term> <listitem> <para> @@ -610,16 +620,6 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</> </listitem> </varlistentry> - <varlistentry> - <term><option>--log-prefix=<replaceable>prefix</></option></term> - <listitem> - <para> - Set the filename prefix for the log files created by - <option>--log</>. The default is <literal>pgbench_log</>. - </para> - </listitem> - </varlistentry> - </variablelist> </para> |