diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 9670671107e..96e3d776051 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -76,7 +76,7 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="parameter">name</replaceable> CLUSTER ON <replaceable class="parameter">index_name</replaceable> SET WITHOUT CLUSTER SET WITHOUT OIDS - SET ACCESS METHOD <replaceable class="parameter">new_access_method</replaceable> + SET ACCESS METHOD { <replaceable class="parameter">new_access_method</replaceable> | DEFAULT } SET TABLESPACE <replaceable class="parameter">new_tablespace</replaceable> SET { LOGGED | UNLOGGED } SET ( <replaceable class="parameter">storage_parameter</replaceable> [= <replaceable class="parameter">value</replaceable>] [, ... ] ) @@ -733,7 +733,9 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM <listitem> <para> This form changes the access method of the table by rewriting it. See - <xref linkend="tableam"/> for more information. + <xref linkend="tableam"/> for more information. Writing + <literal>DEFAULT</literal> changes the access method of the table + to <xref linkend="guc-default-table-access-method"/>. </para> </listitem> </varlistentry> |