diff options
author | Fujii Masao <fujii@postgresql.org> | 2016-12-17 01:25:29 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2016-12-17 01:25:29 +0900 |
commit | 4e344c2cf4ff00ca38ea0035bc137dab95fdd0c0 (patch) | |
tree | 66ada5f62b3242b2da7b385dae2eab6be8c04d7a | |
parent | b81b5a96f424531b97cdd1dba97d9d1b9c9d372e (diff) | |
download | postgresql-4e344c2cf4ff00ca38ea0035bc137dab95fdd0c0.tar.gz postgresql-4e344c2cf4ff00ca38ea0035bc137dab95fdd0c0.zip |
Add missing documentation for effective_io_concurrency tablespace option.
The description of effective_io_concurrency option was missing in ALTER
TABLESPACE docs though it's included in CREATE TABLESPACE one.
Back-patch to 9.6 where effective_io_concurrency tablespace option was added.
Michael Paquier, reported by Marc-Olaf Jaschke
-rw-r--r-- | doc/src/sgml/ref/alter_tablespace.sgml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/doc/src/sgml/ref/alter_tablespace.sgml b/doc/src/sgml/ref/alter_tablespace.sgml index d9b2a133b10..2f411050012 100644 --- a/doc/src/sgml/ref/alter_tablespace.sgml +++ b/doc/src/sgml/ref/alter_tablespace.sgml @@ -83,14 +83,15 @@ ALTER TABLESPACE <replaceable>name</replaceable> RESET ( <replaceable class="PAR <listitem> <para> A tablespace parameter to be set or reset. Currently, the only - available parameters are <varname>seq_page_cost</> and - <varname>random_page_cost</>. Setting either value for a particular - tablespace will override the planner's usual estimate of the cost of - reading pages from tables in that tablespace, as established by - the configuration parameters of the same name (see - <xref linkend="guc-seq-page-cost">, - <xref linkend="guc-random-page-cost">). This may be useful if one - tablespace is located on a disk which is faster or slower than the + available parameters are <varname>seq_page_cost</>, + <varname>random_page_cost</> and <varname>effective_io_concurrency</>. + Setting either value for a particular tablespace will override the + planner's usual estimate of the cost of reading pages from tables in + that tablespace, as established by the configuration parameters of the + same name (see <xref linkend="guc-seq-page-cost">, + <xref linkend="guc-random-page-cost">, + <xref linkend="guc-effective-io-concurrency">). This may be useful if + one tablespace is located on a disk which is faster or slower than the remainder of the I/O subsystem. </para> </listitem> |