diff options
author | Bruce Momjian <bruce@momjian.us> | 2013-01-24 21:21:50 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2013-01-24 21:21:50 -0500 |
commit | 9971f6f5172a8f9525459eb1da840cbc73e6f29f (patch) | |
tree | c9ae030cdcc5110c0a186949c6b3336aa872707e | |
parent | 2ddc600f8f0252a0864e85d5cc1eeb3b9687d7e9 (diff) | |
download | postgresql-9971f6f5172a8f9525459eb1da840cbc73e6f29f.tar.gz postgresql-9971f6f5172a8f9525459eb1da840cbc73e6f29f.zip |
doc: correct sepgsql doc about permission checking of CASCADE
Backpatch to 9.2.
Patch from Kohei KaiGai
-rw-r--r-- | doc/src/sgml/sepgsql.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/sepgsql.sgml b/doc/src/sgml/sepgsql.sgml index 522aa8b9903..e7ce8b5d5b3 100644 --- a/doc/src/sgml/sepgsql.sgml +++ b/doc/src/sgml/sepgsql.sgml @@ -443,7 +443,7 @@ UPDATE t1 SET x = 2, y = md5sum(y) WHERE z = 100; <para> When <literal>DROP</> command is executed, <literal>drop</> will be checked on the object being removed for each object types. Permissions - will not be checked for objects dropped indirectly via <literal>CASCADE</>. + will be also checked for objects dropped indirectly via <literal>CASCADE</>. Deletion of objects contained within a particular schema (tables, views, sequences and procedures) additionally requires <literal>remove_name</> on the schema. |