blob: 4ecbd5023b59612b201d429bbd37422fcb5cdc89 [file] [log] [blame]
/*-------------------------------------------------------------------------
*
* pg_class.h
* definition of the system "relation" relation (pg_class)
* along with the relation's initial contents.
*
*
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/catalog/pg_class.h,v 1.97 2006/11/05 22:42:10 tgl Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
* information from the DATA() statements.
*
*-------------------------------------------------------------------------
*/
#ifndef PG_CLASS_H
#define PG_CLASS_H
#include "catalog/genbki.h"
/* ----------------
* postgres.h contains the system type definitions and the
* CATALOG(), BKI_BOOTSTRAP and DATA() sugar words so this file
* can be read by both genbki.sh and the C compiler.
* ----------------
*/
/* TIDYCAT_BEGINFAKEDEF
CREATE TABLE pg_class
with (camelcase=Relation, bootstrap=true, relid=1259)
(
relname name ,
relnamespace oid ,
reltype oid ,
relowner oid ,
relam oid ,
relfilenode oid ,
reltablespace oid ,
relpages integer ,
reltuples real ,
reltoastrelid oid ,
reltoastidxid oid ,
relaosegrelid oid ,
relaosegidxid oid ,
relhasindex boolean ,
relisshared boolean ,
relkind "char" ,
relstorage "char" ,
relnatts smallint ,
relchecks smallint ,
reltriggers smallint ,
relukeys smallint ,
relfkeys smallint ,
relrefs smallint ,
relhasoids boolean ,
relhaspkey boolean ,
relhasrules boolean ,
relhassubclass boolean ,
relfrozenxid xid ,
relacl aclitem[] ,
reloptions text[]
);
create unique index on pg_class(oid) with (indexid=2662, CamelCase=ClassOid, syscacheid=RELOID, syscache_nbuckets=1024);
create unique index on pg_class(relname, relnamespace) with (indexid=2663, CamelCase=ClassNameNsp, syscacheid=RELNAMENSP, syscache_nbuckets=1024);
alter table pg_class add fk relnamespace on pg_namespace(oid);
alter table pg_class add fk reltype on pg_type(oid);
alter table pg_class add fk relowner on pg_authid(oid);
alter table pg_class add fk relam on pg_am(oid);
alter table pg_class add fk reltablespace on pg_tablespace(oid);
alter table pg_class add fk reltoastrelid on pg_class(oid);
alter table pg_class add fk reltoastidxid on pg_class(oid);
TIDYCAT_ENDFAKEDEF
*/
/* ----------------
* pg_class definition. cpp turns this into
* typedef struct FormData_pg_class
* ----------------
*/
#define RelationRelationId 1259
CATALOG(pg_class,1259) BKI_BOOTSTRAP
{
NameData relname; /* class name */
Oid relnamespace; /* OID of namespace containing this class */
Oid reltype; /* OID of associated entry in pg_type */
Oid relowner; /* class owner */
Oid relam; /* index access method; 0 if not an index */
Oid relfilenode; /* identifier of physical storage file */
Oid reltablespace; /* identifier of table space for relation */
int4 relpages; /* # of blocks (not always up-to-date) */
float4 reltuples; /* # of tuples (not always up-to-date) */
Oid reltoastrelid; /* OID of toast table; 0 if none */
Oid reltoastidxid; /* if toast table, OID of chunk_id index */
Oid relaosegrelid; /* OID of aoseg table; 0 if none */
Oid relaosegidxid; /* if aoseg table, OID of segno index */
bool relhasindex; /* T if has (or has had) any indexes */
bool relisshared; /* T if shared across databases */
char relkind; /* see RELKIND_xxx constants below */
char relstorage; /* see RELSTORAGE_xxx constants below */
int2 relnatts; /* number of user attributes */
/*
* Class pg_attribute must contain exactly "relnatts" user attributes
* (with attnums ranging from 1 to relnatts) for this class. It may also
* contain entries with negative attnums for system attributes.
*/
int2 relchecks; /* # of CHECK constraints for class */
int2 reltriggers; /* # of TRIGGERs */
int2 relukeys; /* # of Unique keys (not used) */
int2 relfkeys; /* # of FOREIGN KEYs (not used) */
int2 relrefs; /* # of references to this rel (not used) */
bool relhasoids; /* T if we generate OIDs for rows of rel */
bool relhaspkey; /* has PRIMARY KEY index */
bool relhasrules; /* has associated rules */
bool relhassubclass; /* has derived classes */
TransactionId relfrozenxid; /* all Xids < this are frozen in this rel */
/*
* VARIABLE LENGTH FIELDS start here. These fields may be NULL, too.
*
* NOTE: these fields are not present in a relcache entry's rd_rel field.
*/
aclitem relacl[1]; /* access permissions */
text reloptions[1]; /* access-method-specific options */
} FormData_pg_class;
/* Size of fixed part of pg_class tuples, not counting var-length fields */
#define CLASS_TUPLE_SIZE \
(offsetof(FormData_pg_class,relfrozenxid) + sizeof(TransactionId))
/* ----------------
* Form_pg_class corresponds to a pointer to a tuple with
* the format of pg_class relation.
* ----------------
*/
typedef FormData_pg_class *Form_pg_class;
/* ----------------
* compiler constants for pg_class
* ----------------
*/
#define Natts_pg_class 30
#define Anum_pg_class_relname 1
#define Anum_pg_class_relnamespace 2
#define Anum_pg_class_reltype 3
#define Anum_pg_class_relowner 4
#define Anum_pg_class_relam 5
#define Anum_pg_class_relfilenode 6
#define Anum_pg_class_reltablespace 7
#define Anum_pg_class_relpages 8
#define Anum_pg_class_reltuples 9
#define Anum_pg_class_reltoastrelid 10
#define Anum_pg_class_reltoastidxid 11
#define Anum_pg_class_relaosegrelid 12
#define Anum_pg_class_relaosegidxid 13
#define Anum_pg_class_relhasindex 14
#define Anum_pg_class_relisshared 15
#define Anum_pg_class_relkind 16
#define Anum_pg_class_relstorage 17
#define Anum_pg_class_relnatts 18
#define Anum_pg_class_relchecks 19
#define Anum_pg_class_reltriggers 20
#define Anum_pg_class_relukeys 21
#define Anum_pg_class_relfkeys 22
#define Anum_pg_class_relrefs 23
#define Anum_pg_class_relhasoids 24
#define Anum_pg_class_relhaspkey 25
#define Anum_pg_class_relhasrules 26
#define Anum_pg_class_relhassubclass 27
#define Anum_pg_class_relfrozenxid 28
#define Anum_pg_class_relacl 29
#define Anum_pg_class_reloptions 30
/* ----------------
* initial contents of pg_class
*
* NOTE: only "bootstrapped" relations need to be declared here. Be sure that
* the OIDs listed here match those given in their CATALOG macros, and that
* the relnatts values are correct.
* ----------------
*/
/* Note: "3" in the relfrozenxid column stands for FirstNormalTransactionId */
DATA(insert OID = 1247 ( pg_type PGNSP 71 PGUID 0 1247 0 0 0 0 0 0 0 f f r h 23 0 0 0 0 0 t f f f 3 _null_ _null_ ));
DESCR("");
DATA(insert OID = 1249 ( pg_attribute PGNSP 75 PGUID 0 1249 0 0 0 0 0 0 0 f f r h 17 0 0 0 0 0 f f f f 3 _null_ _null_ ));
DESCR("");
DATA(insert OID = 1255 ( pg_proc PGNSP 81 PGUID 0 1255 0 0 0 0 0 0 0 f f r h 20 0 0 0 0 0 t f f f 3 _null_ _null_ ));
DESCR("");
DATA(insert OID = 1259 ( pg_class PGNSP 83 PGUID 0 1259 0 0 0 0 0 0 0 f f r h 30 0 0 0 0 0 t f f f 3 _null_ _null_ ));
DESCR("");
/*
* pg_class table values for FormData_pg_class.
*/
#define Class_pg_class \
{"pg_class"}, PG_CATALOG_NAMESPACE, PG_CLASS_RELTYPE_OID, BOOTSTRAP_SUPERUSERID, 0, \
RelationRelationId, GLOBALTABLESPACE_OID, \
0, 0, 0, 0, 0, 0, false, false, RELKIND_RELATION, RELSTORAGE_HEAP, Natts_pg_class, \
0, 0, 0, 0, 0, true, false, false, false, FirstNormalTransactionId, {0}, {{{'\0','\0','\0','\0'},{'\0'}}}
#define RELKIND_INDEX 'i' /* secondary index */
#define RELKIND_RELATION 'r' /* ordinary cataloged heap */
#define RELKIND_SEQUENCE 'S' /* SEQUENCE relation */
#define RELKIND_UNCATALOGED 'u' /* temporary heap */
#define RELKIND_TOASTVALUE 't' /* moved off huge values */
#define RELKIND_AOSEGMENTS 'o' /* AO segment files and eof's */
#define RELKIND_AOBLOCKDIR 'b' /* AO block directory */
#define RELKIND_VIEW 'v' /* view */
#define RELKIND_COMPOSITE_TYPE 'c' /* composite type */
/*
* relstorage describes how a relkind is physically stored in the database.
*
* RELSTORAGE_HEAP - stored on disk using heap storage.
* RELSTORAGE_AOROWS - stored on disk using append only storage.
* RELSTORAGE_PARQUET - stored on dist using append only parquet.
* RELSTORAGE_VIRTUAL - has virtual storage, meaning, relation has no
* data directly stored forit (right now this
* relates to views and comp types).
* RELSTORAGE_EXTERNAL- stored externally using external tables.
* RELSTORAGE_FOREIGN - stored in another server.
*/
#define RELSTORAGE_HEAP 'h'
#define RELSTORAGE_AOROWS 'a'
#define RELSTORAGE_PARQUET 'p'
#define RELSTORAGE_VIRTUAL 'v'
#define RELSTORAGE_EXTERNAL 'x'
#define RELSTORAGE_FOREIGN 'f'
static inline bool relstorage_is_buffer_pool(char c)
{
return (c == RELSTORAGE_HEAP);
}
static inline bool relstorage_is_ao(char c)
{
return (c == RELSTORAGE_AOROWS || c == RELSTORAGE_PARQUET);
}
static inline bool relstorage_is_aoparquet(char c)
{
return (c == RELSTORAGE_PARQUET);
}
static inline bool relstorage_is_external(char c)
{
return (c == RELSTORAGE_EXTERNAL);
}
static inline bool relstorage_is_foreign(char c)
{
return (c == RELSTORAGE_FOREIGN);
}
#endif /* PG_CLASS_H */