aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-06-07 23:36:04 -0400
committerPeter Eisentraut <peter_e@gmx.net>2018-06-07 23:36:04 -0400
commit5efbdd36f1584d5e6e3870a05dc5f53692b18df6 (patch)
treee062730468b40497cccb6fc30805920b4ab28726
parent3b9b7516f42b72589951bb8d47a0220c67fb70de (diff)
downloadpostgresql-5efbdd36f1584d5e6e3870a05dc5f53692b18df6.tar.gz
postgresql-5efbdd36f1584d5e6e3870a05dc5f53692b18df6.zip
doc: Move some new options into better positions on man pages
-rw-r--r--doc/src/sgml/ref/initdb.sgml41
-rw-r--r--doc/src/sgml/ref/pg_dump.sgml30
-rw-r--r--doc/src/sgml/ref/pg_dumpall.sgml30
3 files changed, 50 insertions, 51 deletions
diff --git a/doc/src/sgml/ref/initdb.sgml b/doc/src/sgml/ref/initdb.sgml
index feefd9a41e0..4489b585c7a 100644
--- a/doc/src/sgml/ref/initdb.sgml
+++ b/doc/src/sgml/ref/initdb.sgml
@@ -334,27 +334,6 @@ PostgreSQL documentation
</listitem>
</varlistentry>
- <varlistentry>
- <term><option>--wal-segsize=<replaceable>size</replaceable></option></term>
- <listitem>
- <para>
- Set the <firstterm>WAL segment size</firstterm>, in megabytes. This
- is the size of each individual file in the WAL log. The default size
- is 16 megabytes. The value must be a power of 2 between 1 and 1024
- (megabytes). This option can only be set during initialization, and
- cannot be changed later.
- </para>
-
- <para>
- It may be useful to adjust this size to control the granularity of
- WAL log shipping or archiving. Also, in databases with a high volume
- of WAL, the sheer number of WAL files per directory can become a
- performance and management problem. Increasing the WAL file size
- will reduce the number of WAL files.
- </para>
- </listitem>
- </varlistentry>
-
<varlistentry>
<term><option>-X <replaceable class="parameter">directory</replaceable></option></term>
<term><option>--waldir=<replaceable class="parameter">directory</replaceable></option></term>
@@ -366,6 +345,26 @@ PostgreSQL documentation
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><option>--wal-segsize=<replaceable>size</replaceable></option></term>
+ <listitem>
+ <para>
+ Set the <firstterm>WAL segment size</firstterm>, in megabytes. This
+ is the size of each individual file in the WAL log. The default size
+ is 16 megabytes. The value must be a power of 2 between 1 and 1024
+ (megabytes). This option can only be set during initialization, and
+ cannot be changed later.
+ </para>
+
+ <para>
+ It may be useful to adjust this size to control the granularity of
+ WAL log shipping or archiving. Also, in databases with a high volume
+ of WAL, the sheer number of WAL files per directory can become a
+ performance and management problem. Increasing the WAL file size
+ will reduce the number of WAL files.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml
index 64ced9fe045..f402d46b0cf 100644
--- a/doc/src/sgml/ref/pg_dump.sgml
+++ b/doc/src/sgml/ref/pg_dump.sgml
@@ -790,21 +790,6 @@ PostgreSQL documentation
</varlistentry>
<varlistentry>
- <term><option>--lock-wait-timeout=<replaceable class="parameter">timeout</replaceable></option></term>
- <listitem>
- <para>
- Do not wait forever to acquire shared table locks at the beginning of
- the dump. Instead fail if unable to lock a table within the specified
- <replaceable class="parameter">timeout</replaceable>. The timeout may be
- specified in any of the formats accepted by <command>SET
- statement_timeout</command>. (Allowed formats vary depending on the server
- version you are dumping from, but an integer number of milliseconds
- is accepted by all versions.)
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry>
<term><option>--load-via-partition-root</option></term>
<listitem>
<para>
@@ -820,6 +805,21 @@ PostgreSQL documentation
</varlistentry>
<varlistentry>
+ <term><option>--lock-wait-timeout=<replaceable class="parameter">timeout</replaceable></option></term>
+ <listitem>
+ <para>
+ Do not wait forever to acquire shared table locks at the beginning of
+ the dump. Instead fail if unable to lock a table within the specified
+ <replaceable class="parameter">timeout</replaceable>. The timeout may be
+ specified in any of the formats accepted by <command>SET
+ statement_timeout</command>. (Allowed formats vary depending on the server
+ version you are dumping from, but an integer number of milliseconds
+ is accepted by all versions.)
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
<term><option>--no-comments</option></term>
<listitem>
<para>
diff --git a/doc/src/sgml/ref/pg_dumpall.sgml b/doc/src/sgml/ref/pg_dumpall.sgml
index 8e5e7f9ef8a..22cb7907035 100644
--- a/doc/src/sgml/ref/pg_dumpall.sgml
+++ b/doc/src/sgml/ref/pg_dumpall.sgml
@@ -327,6 +327,21 @@ PostgreSQL documentation
</varlistentry>
<varlistentry>
+ <term><option>--load-via-partition-root</option></term>
+ <listitem>
+ <para>
+ When dumping a <command>COPY</command> or <command>INSERT</command> statement for a partitioned table,
+ target the root of the partitioning hierarchy which contains it rather
+ than the partition itself. This may be useful when reloading data on
+ a server where rows do not always fall into the same partitions as
+ they did on the original server. This could happen, for example, if
+ the partitioning column is of type text and the two system have
+ different definitions of the collation used to partition the data.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
<term><option>--lock-wait-timeout=<replaceable class="parameter">timeout</replaceable></option></term>
<listitem>
<para>
@@ -343,21 +358,6 @@ PostgreSQL documentation
</varlistentry>
<varlistentry>
- <term><option>--load-via-partition-root</option></term>
- <listitem>
- <para>
- When dumping a <command>COPY</command> or <command>INSERT</command> statement for a partitioned table,
- target the root of the partitioning hierarchy which contains it rather
- than the partition itself. This may be useful when reloading data on
- a server where rows do not always fall into the same partitions as
- they did on the original server. This could happen, for example, if
- the partitioning column is of type text and the two system have
- different definitions of the collation used to partition the data.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry>
<term><option>--no-comments</option></term>
<listitem>
<para>