diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index edc9be92a6..0e5f8b914b 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -16398,6 +16398,12 @@ SET search_path TO schema , sc + + acldefault(type, + oid) + aclitem[] + default hardcoded access privileges for an object belonging to oid + has_any_column_privilege(user, table, @@ -16605,6 +16611,9 @@ SET search_path TO schema , sc + + acldefault + has_any_column_privilege @@ -16648,6 +16657,27 @@ SET search_path TO schema , sc row_security_active + + acldefault returns the hardcoded default access privileges + for an object of type belonging to role oid. + Type is a CHAR, use + 'c' for COLUMN, + 'r' for relation-like objects such as TABLE or VIEW, + 's' for SEQUENCE, + 'd' for DATABASE, + 'f' for FUNCTION or PROCEDURE, + 'l' for LANGUAGE, + 'L' for LARGE OBJECT, + 'n' for SCHEMA, + 't' for TABLESPACE, + 'F' for FOREIGN DATA WRAPPER, + 'S' for FOREIGN SERVER, + 'T' for TYPE or DOMAIN. + Default access permissions are described in + and can be overwritten with + . + + has_table_privilege checks whether a user can access a table in a particular way. The user can be