aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-05-28 16:37:11 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-05-28 16:37:11 +0000
commit0f3f34f098baf2aee41b8de7feb4b05add644d7d (patch)
tree51178cfaa1d5aff249afad6b350c914a7a57f55e /src
parentd70749545253450b59a9f5ceef56040ccf8c87c5 (diff)
downloadpostgresql-0f3f34f098baf2aee41b8de7feb4b05add644d7d.tar.gz
postgresql-0f3f34f098baf2aee41b8de7feb4b05add644d7d.zip
Fix minor error in comment.
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/aclchk.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/catalog/aclchk.c b/src/backend/catalog/aclchk.c
index 4ab6717c7c8..3aaabf1b990 100644
--- a/src/backend/catalog/aclchk.c
+++ b/src/backend/catalog/aclchk.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/catalog/aclchk.c,v 1.101 2004/05/28 16:17:14 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/catalog/aclchk.c,v 1.102 2004/05/28 16:37:11 tgl Exp $
*
* NOTES
* See acl.h.
@@ -1355,9 +1355,10 @@ pg_namespace_aclmask(Oid nsp_oid, AclId userid,
*
* This may seem redundant given the check in InitTempTableNamespace,
* but it really isn't since current user ID may have changed since then.
- * The upshot of this behavior is that a SECURITY INVOKER function can
+ * The upshot of this behavior is that a SECURITY DEFINER function can
* create temp tables that can then be accessed (if permission is granted)
- * by code that doesn't have permissions to create temp tables.
+ * by code in the same session that doesn't have permissions to create
+ * temp tables.
*
* XXX Would it be safe to ereport a special error message as
* InitTempTableNamespace does? Returning zero here means we'll get a