PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_policy.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pg_policy.h
4 * definition of the "policy" system catalog (pg_policy)
5 *
6 *
7 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/catalog/pg_policy.h
11 *
12 * NOTES
13 * The Catalog.pm module reads this file and derives schema
14 * information.
15 *
16 *-------------------------------------------------------------------------
17 */
18#ifndef PG_POLICY_H
19#define PG_POLICY_H
20
21#include "catalog/genbki.h"
22#include "catalog/pg_policy_d.h" /* IWYU pragma: export */
23
24/* ----------------
25 * pg_policy definition. cpp turns this into
26 * typedef struct FormData_pg_policy
27 * ----------------
28 */
30{
31 Oid oid; /* oid */
32 NameData polname; /* Policy name. */
33 Oid polrelid BKI_LOOKUP(pg_class); /* Oid of the relation with
34 * policy. */
35 char polcmd; /* One of ACL_*_CHR, or '*' for all */
36 bool polpermissive; /* restrictive or permissive policy */
37
38#ifdef CATALOG_VARLEN
39 /* Roles to which the policy is applied; zero means PUBLIC */
41 pg_node_tree polqual; /* Policy quals. */
42 pg_node_tree polwithcheck; /* WITH CHECK quals. */
43#endif
45
46/* ----------------
47 * Form_pg_policy corresponds to a pointer to a row with
48 * the format of pg_policy relation.
49 * ----------------
50 */
52
54
57
58#endif /* PG_POLICY_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
FormData_pg_policy
Definition pg_policy.h:44
FormData_pg_policy * Form_pg_policy
Definition pg_policy.h:51
unsigned int Oid
static int fb(int x)
Definition c.h:760