PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_inherits.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pg_inherits.h
4 * definition of the "inherits" system catalog (pg_inherits)
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_inherits.h
11 *
12 * NOTES
13 * The Catalog.pm module reads this file and derives schema
14 * information.
15 *
16 *-------------------------------------------------------------------------
17 */
18#ifndef PG_INHERITS_H
19#define PG_INHERITS_H
20
21#include "catalog/genbki.h"
22#include "catalog/pg_inherits_d.h" /* IWYU pragma: export */
23
24#include "nodes/pg_list.h"
25#include "storage/lock.h"
26
27/* ----------------
28 * pg_inherits definition. cpp turns this into
29 * typedef struct FormData_pg_inherits
30 * ----------------
31 */
39
40/* ----------------
41 * Form_pg_inherits corresponds to a pointer to a tuple with
42 * the format of pg_inherits relation.
43 * ----------------
44 */
46
49
50
52extern List *find_inheritance_children_extended(Oid parentrelId, bool omit_detached,
53 LOCKMODE lockmode, bool *detached_exist, TransactionId *detached_xmin);
54
57extern bool has_subclass(Oid relationId);
58extern bool has_superclass(Oid relationId);
62extern bool DeleteInheritsTuple(Oid inhrelid, Oid inhparent,
64 const char *childname);
65extern bool PartitionHasPendingDetach(Oid partoid);
66
67#endif /* PG_INHERITS_H */
int32_t int32
Definition c.h:542
uint32 TransactionId
Definition c.h:666
#define DECLARE_UNIQUE_INDEX_PKEY(name, oid, oidmacro, tblname, decl)
Definition genbki.h:86
#define BKI_LOOKUP(catalog)
Definition genbki.h:46
#define CATALOG(name, oid, oidmacro)
Definition genbki.h:23
#define DECLARE_INDEX(name, oid, oidmacro, tblname, decl)
Definition genbki.h:84
int LOCKMODE
Definition lockdefs.h:26
FormData_pg_inherits
Definition pg_inherits.h:38
FormData_pg_inherits * Form_pg_inherits
Definition pg_inherits.h:45
List * find_all_inheritors(Oid parentrelId, LOCKMODE lockmode, List **numparents)
bool has_subclass(Oid relationId)
bool DeleteInheritsTuple(Oid inhrelid, Oid inhparent, bool expect_detach_pending, const char *childname)
List * find_inheritance_children(Oid parentrelId, LOCKMODE lockmode)
Definition pg_inherits.c:58
void StoreSingleInheritance(Oid relationId, Oid parentOid, int32 seqNumber)
List * find_inheritance_children_extended(Oid parentrelId, bool omit_detached, LOCKMODE lockmode, bool *detached_exist, TransactionId *detached_xmin)
Definition pg_inherits.c:82
bool has_superclass(Oid relationId)
bool typeInheritsFrom(Oid subclassTypeId, Oid superclassTypeId)
bool PartitionHasPendingDetach(Oid partoid)
unsigned int Oid
static int fb(int x)
Definition pg_list.h:54