diff options
author | Bruce Momjian | 2011-10-13 14:05:54 +0000 |
---|---|---|
committer | Bruce Momjian | 2011-10-13 14:05:54 +0000 |
commit | cf72528e87dd59ba6833c912e3712413dde6669d (patch) | |
tree | 51e2efbe982236c2eeb297ee06addc15381978be | |
parent | 4c32f817667ea5461832897a6374be5cfc9a1bf5 (diff) |
Document who can drop a table (owner and user with permissions).
-rw-r--r-- | doc/src/sgml/ref/drop_table.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/drop_table.sgml b/doc/src/sgml/ref/drop_table.sgml index 26fe76e1f8..239767f394 100644 --- a/doc/src/sgml/ref/drop_table.sgml +++ b/doc/src/sgml/ref/drop_table.sgml @@ -30,7 +30,8 @@ DROP TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, .. <para> <command>DROP TABLE</command> removes tables from the database. - Only its owner can drop a table. To empty a table of rows + Only its owner and users with the proper permissions can drop a + table. To empty a table of rows without destroying the table, use <xref linkend="sql-delete"> or <xref linkend="sql-truncate">. </para> |