diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-03-08 14:22:06 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-03-08 14:22:06 +0100 |
commit | 822e8e295166f000e337a9b105692521e1fdc762 (patch) | |
tree | d6594ecdda67009556ed526ba01dc5ae67c68ce1 | |
parent | daa8365a900729fe2a8d427fbeff19e763e35723 (diff) | |
download | postgresql-822e8e295166f000e337a9b105692521e1fdc762.tar.gz postgresql-822e8e295166f000e337a9b105692521e1fdc762.zip |
Update comment
There was apparently an attempt here to list all the object types that
ACL_USAGE applies to, but it wasn't complete. So instead of trying to
keep up, put in a more timeless comment.
-rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 259e8142538..371aa0ffc56 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -88,8 +88,7 @@ typedef uint64 AclMode; /* a bitmask of privilege bits */ #define ACL_REFERENCES (1<<5) #define ACL_TRIGGER (1<<6) #define ACL_EXECUTE (1<<7) /* for functions */ -#define ACL_USAGE (1<<8) /* for languages, namespaces, FDWs, and - * servers */ +#define ACL_USAGE (1<<8) /* for various object types */ #define ACL_CREATE (1<<9) /* for namespaces and databases */ #define ACL_CREATE_TEMP (1<<10) /* for databases */ #define ACL_CONNECT (1<<11) /* for databases */ |