diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-10-15 10:08:02 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-10-15 10:08:02 -0400 |
commit | 2deba6d4056f0cc4fa0019471194d6b5942c38ab (patch) | |
tree | c8c04374eda53c2e84ddacd7815244a381d062c0 /doc/src | |
parent | 2795592e52c88e510ae4bcbc17b305d6adc0b2b6 (diff) | |
download | postgresql-2deba6d4056f0cc4fa0019471194d6b5942c38ab.tar.gz postgresql-2deba6d4056f0cc4fa0019471194d6b5942c38ab.zip |
Improve doc wording of drop table permission.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/drop_table.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/drop_table.sgml b/doc/src/sgml/ref/drop_table.sgml index 239767f3944..fc51c7c6228 100644 --- a/doc/src/sgml/ref/drop_table.sgml +++ b/doc/src/sgml/ref/drop_table.sgml @@ -30,7 +30,7 @@ DROP TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, .. <para> <command>DROP TABLE</command> removes tables from the database. - Only its owner and users with the proper permissions can drop a + Only the table owner, the schema owner, and superuser can drop a table. To empty a table of rows without destroying the table, use <xref linkend="sql-delete"> or <xref linkend="sql-truncate">. |