diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-06 20:42:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-06 20:42:38 +0000 |
commit | 62e6eb9bf710c66c0f353febe8eda9bdb2e1c8f6 (patch) | |
tree | 21d615ec11d7a2f28db223ec8171a35afdea9c70 | |
parent | 0df1dc6aaffb620c6bfde464248a3a4b64034daf (diff) | |
download | postgresql-62e6eb9bf710c66c0f353febe8eda9bdb2e1c8f6.tar.gz postgresql-62e6eb9bf710c66c0f353febe8eda9bdb2e1c8f6.zip |
alter table doc cleanups.
Neil Conway
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 2d87902b2f4..da6e91bf4d3 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.39 2002/03/05 05:33:04 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.40 2002/03/06 20:42:38 momjian Exp $ PostgreSQL documentation --> @@ -183,7 +183,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable> substring operations on a column faster, at the penalty of increased storage space. The <literal>RENAME</literal> clause causes the name of a table, - column, index, or sequence to change without changing any of the + column, index, sequence or view to change without changing any of the data. The data will remain of the same type and size after the command is executed. The ADD <replaceable class="PARAMETER">table_constraint_definition</replaceable> clause @@ -191,8 +191,8 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable> linkend="SQL-CREATETABLE" endterm="SQL-CREATETABLE-TITLE">. The DROP CONSTRAINT <replaceable class="PARAMETER">constraint</replaceable> clause drops all constraints on the table (and its children) that match <replaceable class="PARAMETER">constraint</replaceable>. - The OWNER clause changes the owner of the table to the user <replaceable class="PARAMETER"> - new user</replaceable>. + The OWNER clause changes the owner of the table, index, sequence or view to the + user <replaceable class="PARAMETER">new user</replaceable>. </para> <para> |