diff options
author | Michael Paquier | 2020-01-24 00:55:21 +0000 |
---|---|---|
committer | Michael Paquier | 2020-01-24 00:55:21 +0000 |
commit | 6de7bcb76f6593dcd107a6bfed645f2142bf3225 (patch) | |
tree | cfaf9e5fa0e3540b6b57b90b7dc3226dfd5c1ba8 | |
parent | c32704441d47cc1cbb36367a429814511edb6ffd (diff) |
Doc: Fix list of storage parameters available for ALTER TABLE
Only the parameter parallel_workers can be used directly with ALTER
TABLE.
Issue introduced in 6f3a13f, so backpatch down to 10.
Author: Justin Pryzby
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: 10
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 1c222d63e0b..81e106033fa 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -719,9 +719,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM <para> <literal>SHARE UPDATE EXCLUSIVE</literal> lock will be taken for fillfactor, toast and autovacuum storage parameters, as well as the - following planner related parameters: - <varname>effective_io_concurrency</varname>, <varname>parallel_workers</varname>, <varname>seq_page_cost</varname>, - <varname>random_page_cost</varname>, <varname>n_distinct</varname> and <varname>n_distinct_inherited</varname>. + planner parameter <varname>parallel_workers</varname>. </para> </listitem> </varlistentry> |