1/*-------------------------------------------------------------------------
2 *
3 * pg_policy.h
4 * definition of the "policy" system catalog (pg_policy)
5 *
6 *
7 * Portions Copyright (c) 1996-2019, 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"
23
24/* ----------------
25 * pg_policy definition. cpp turns this into
26 * typedef struct FormData_pg_policy
27 * ----------------
28 */
29CATALOG(pg_policy,3256,PolicyRelationId)
30{
31 Oid oid; /* oid */
32 NameData polname; /* Policy name. */
33 Oid polrelid; /* Oid of the relation with policy. */
34 char polcmd; /* One of ACL_*_CHR, or '*' for all */
35 bool polpermissive; /* restrictive or permissive policy */
36
37#ifdef CATALOG_VARLEN
38 Oid polroles[1] BKI_FORCE_NOT_NULL; /* Roles associated with
39 * policy */
40 pg_node_tree polqual; /* Policy quals. */
41 pg_node_tree polwithcheck; /* WITH CHECK quals. */
42#endif
43} FormData_pg_policy;
44
45/* ----------------
46 * Form_pg_policy corresponds to a pointer to a row with
47 * the format of pg_policy relation.
48 * ----------------
49 */
50typedef FormData_pg_policy *Form_pg_policy;
51
52#endif /* PG_POLICY_H */
53