diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-04-14 10:43:53 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-04-14 10:44:59 -0400 |
commit | 0c953540d285a94684b0c0dc7a2c338cb1d65ef0 (patch) | |
tree | 33cdd4df6c8ac0fcfad08e159e116531043fd695 | |
parent | 7b979524afb21c969234f7a0a9b1c97ceec4629d (diff) | |
download | postgresql-0c953540d285a94684b0c0dc7a2c338cb1d65ef0.tar.gz postgresql-0c953540d285a94684b0c0dc7a2c338cb1d65ef0.zip |
Update list of relation types on which ALTER TABLE RENAME/OWNER work.
Etsuro Fujita
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 0b08f83ba35..19f2a2e76f1 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -582,8 +582,8 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> <term><literal>OWNER</literal></term> <listitem> <para> - This form changes the owner of the table, sequence, or view to the - specified user. + This form changes the owner of the table, sequence, view, materialized view, + or foreign table to the specified user. </para> </listitem> </varlistentry> @@ -625,8 +625,9 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> <listitem> <para> The <literal>RENAME</literal> forms change the name of a table - (or an index, sequence, or view), the name of an individual column in - a table, or the name of a constraint of the table. There is no effect on the stored data. + (or an index, sequence, view, materialized view, or foreign table), the name + of an individual column in a table, or the name of a constraint of the table. + There is no effect on the stored data. </para> </listitem> </varlistentry> |