PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_default_acl.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pg_default_acl.h
4 * definition of the system catalog for default ACLs of new objects
5 * (pg_default_acl)
6 *
7 *
8 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
9 * Portions Copyright (c) 1994, Regents of the University of California
10 *
11 * src/include/catalog/pg_default_acl.h
12 *
13 * NOTES
14 * The Catalog.pm module reads this file and derives schema
15 * information.
16 *
17 *-------------------------------------------------------------------------
18 */
19#ifndef PG_DEFAULT_ACL_H
20#define PG_DEFAULT_ACL_H
21
22#include "catalog/genbki.h"
23#include "catalog/pg_default_acl_d.h" /* IWYU pragma: export */
24
25/* ----------------
26 * pg_default_acl definition. cpp turns this into
27 * typedef struct FormData_pg_default_acl
28 * ----------------
29 */
31{
32 Oid oid; /* oid */
33 Oid defaclrole BKI_LOOKUP(pg_authid); /* OID of role owning this
34 * ACL */
35 Oid defaclnamespace BKI_LOOKUP_OPT(pg_namespace); /* OID of namespace, or
36 * 0 for all */
37 char defaclobjtype; /* see DEFACLOBJ_xxx constants below */
38
39#ifdef CATALOG_VARLEN /* variable-length fields start here */
40 aclitem defaclacl[1] BKI_FORCE_NOT_NULL; /* permissions to add at
41 * CREATE time */
42#endif
44
45/* ----------------
46 * Form_pg_default_acl corresponds to a pointer to a tuple with
47 * the format of pg_default_acl relation.
48 * ----------------
49 */
51
53
56
58
59#ifdef EXPOSE_TO_CLIENT_CODE
60
61/*
62 * Types of objects for which the user is allowed to specify default
63 * permissions through pg_default_acl. These codes are used in the
64 * defaclobjtype column.
65 */
66#define DEFACLOBJ_RELATION 'r' /* table, view */
67#define DEFACLOBJ_SEQUENCE 'S' /* sequence */
68#define DEFACLOBJ_FUNCTION 'f' /* function */
69#define DEFACLOBJ_TYPE 'T' /* type */
70#define DEFACLOBJ_NAMESPACE 'n' /* namespace */
71#define DEFACLOBJ_LARGEOBJECT 'L' /* large object */
72
73#endif /* EXPOSE_TO_CLIENT_CODE */
74
75#endif /* PG_DEFAULT_ACL_H */
#define DECLARE_UNIQUE_INDEX_PKEY(name, oid, oidmacro, tblname, decl)
Definition genbki.h:86
#define BKI_LOOKUP(catalog)
Definition genbki.h:46
#define BKI_LOOKUP_OPT(catalog)
Definition genbki.h:47
#define DECLARE_UNIQUE_INDEX(name, oid, oidmacro, tblname, decl)
Definition genbki.h:85
#define BKI_FORCE_NOT_NULL
Definition genbki.h:33
#define DECLARE_TOAST(name, toastoid, indexoid)
Definition genbki.h:63
#define CATALOG(name, oid, oidmacro)
Definition genbki.h:23
#define MAKE_SYSCACHE(name, idxname, nbuckets)
Definition genbki.h:127
FormData_pg_default_acl
FormData_pg_default_acl * Form_pg_default_acl
unsigned int Oid
static int fb(int x)