1 /*-------------------------------------------------------------------------
4 * definition of the system "inherits" relation (pg_inherits)
5 * along with the relation's initial contents.
8 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
9 * Portions Copyright (c) 1994, Regents of the University of California
14 * the genbki.sh script reads this file and generates .bki
15 * information from the DATA() statements.
17 *-------------------------------------------------------------------------
22 #include "catalog/genbki.h"
25 * pg_inherits definition. cpp turns this into
26 * typedef struct FormData_pg_inherits
29 #define InheritsRelationId 2611
31 CATALOG(pg_inherits
,2611) BKI_WITHOUT_OIDS
36 } FormData_pg_inherits
;
39 * Form_pg_inherits corresponds to a pointer to a tuple with
40 * the format of pg_inherits relation.
43 typedef FormData_pg_inherits
*Form_pg_inherits
;
46 * compiler constants for pg_inherits
49 #define Natts_pg_inherits 3
50 #define Anum_pg_inherits_inhrelid 1
51 #define Anum_pg_inherits_inhparent 2
52 #define Anum_pg_inherits_inhseqno 3
55 * pg_inherits has no initial contents
59 #endif /* PG_INHERITS_H */