diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-30 01:26:26 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-30 01:26:26 +0000 |
commit | e4f06dc12efaf14878288a175efcf50ce2318813 (patch) | |
tree | 471128164cde2091e53cf0a94692437f16fc956d /doc/src | |
parent | 4c25a0655b9721af5c65922981c03926d856c6e4 (diff) | |
download | postgresql-e4f06dc12efaf14878288a175efcf50ce2318813.tar.gz postgresql-e4f06dc12efaf14878288a175efcf50ce2318813.zip |
Clean up loose ends remaining from schema privileges discussion.
I concluded that RENAME should require CREATE privilege on the namespace
as well as ownership of the table.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/grant.sgml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/grant.sgml b/doc/src/sgml/ref/grant.sgml index 1697f91929a..226db71d683 100644 --- a/doc/src/sgml/ref/grant.sgml +++ b/doc/src/sgml/ref/grant.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.24 2002/04/29 22:28:19 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.25 2002/04/30 01:26:25 tgl Exp $ PostgreSQL documentation --> @@ -161,6 +161,8 @@ GRANT { { CREATE | USAGE } [,...] | ALL [ PRIVILEGES ] } </para> <para> For schemas, allows new objects to be created within the schema. + To rename an existing object, you must own the object <emphasis>and</> + have this privilege for the containing schema. </para> </listitem> </varlistentry> |