PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_shdepend.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pg_shdepend.h
4 * definition of the "shared dependency" system catalog (pg_shdepend)
5 *
6 * pg_shdepend has no preloaded contents, so there is no pg_shdepend.dat
7 * file; dependencies for system-defined objects are loaded into it
8 * on-the-fly during initdb. Most built-in objects are pinned anyway,
9 * and hence need no explicit entries in pg_shdepend.
10 *
11 * NOTE: we do not represent all possible dependency pairs in pg_shdepend;
12 * for example, there's not much value in creating an explicit dependency
13 * from a relation to its database. Currently, only dependencies on roles
14 * are explicitly stored in pg_shdepend.
15 *
16 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
17 * Portions Copyright (c) 1994, Regents of the University of California
18 *
19 * src/include/catalog/pg_shdepend.h
20 *
21 * NOTES
22 * The Catalog.pm module reads this file and derives schema
23 * information.
24 *
25 *-------------------------------------------------------------------------
26 */
27#ifndef PG_SHDEPEND_H
28#define PG_SHDEPEND_H
29
30#include "catalog/genbki.h"
31#include "catalog/pg_shdepend_d.h" /* IWYU pragma: export */
32
33/* ----------------
34 * pg_shdepend definition. cpp turns this into
35 * typedef struct FormData_pg_shdepend
36 * ----------------
37 */
39
41{
42 /*
43 * Identification of the dependent (referencing) object.
44 *
45 * Note that dbid can be zero to denote a shared object.
46 */
47 Oid dbid BKI_LOOKUP_OPT(pg_database); /* OID of database
48 * containing object */
49 Oid classid BKI_LOOKUP(pg_class); /* OID of table containing
50 * object */
51 Oid objid; /* OID of object itself */
52 int32 objsubid; /* column number, or 0 if not used */
53
54 /*
55 * Identification of the independent (referenced) object. This is always
56 * a shared object, so we need no database ID field. We don't bother with
57 * a sub-object ID either.
58 */
59 Oid refclassid BKI_LOOKUP(pg_class); /* OID of table containing
60 * object */
61 Oid refobjid; /* OID of object itself */
62
63 /*
64 * Precise semantics of the relationship are specified by the deptype
65 * field. See SharedDependencyType in catalog/dependency.h.
66 */
67 char deptype; /* see codes in dependency.h */
69
71
72/* ----------------
73 * Form_pg_shdepend corresponds to a pointer to a row with
74 * the format of pg_shdepend relation.
75 * ----------------
76 */
78
81
82#endif /* PG_SHDEPEND_H */
int32_t int32
Definition c.h:575
#define BEGIN_CATALOG_STRUCT
Definition genbki.h:37
#define BKI_LOOKUP(catalog)
Definition genbki.h:65
#define END_CATALOG_STRUCT
Definition genbki.h:38
#define BKI_LOOKUP_OPT(catalog)
Definition genbki.h:66
#define CATALOG(name, oid, oidmacro)
Definition genbki.h:42
#define DECLARE_INDEX(name, oid, oidmacro, tblname, decl)
Definition genbki.h:103
#define BKI_SHARED_RELATION
Definition genbki.h:46
END_CATALOG_STRUCT typedef FormData_pg_shdepend * Form_pg_shdepend
Definition pg_shdepend.h:77
FormData_pg_shdepend
Definition pg_shdepend.h:68
unsigned int Oid
static int fb(int x)