heap.h
来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· C头文件 代码 · 共 104 行
H
104 行
/*------------------------------------------------------------------------- * * heap.h * prototypes for functions in backend/catalog/heap.c * * * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/catalog/heap.h,v 1.85 2006/07/13 16:49:19 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef HEAP_H#define HEAP_H#include "parser/parse_node.h"typedef struct RawColumnDefault{ AttrNumber attnum; /* attribute to attach default to */ Node *raw_default; /* default value (untransformed parse tree) */} RawColumnDefault;typedef struct CookedConstraint{ ConstrType contype; /* CONSTR_DEFAULT or CONSTR_CHECK */ char *name; /* name, or NULL if none */ AttrNumber attnum; /* which attr (only for DEFAULT) */ Node *expr; /* transformed default or check expr */} CookedConstraint;extern Relation heap_create(const char *relname, Oid relnamespace, Oid reltablespace, Oid relid, TupleDesc tupDesc, char relkind, bool shared_relation, bool allow_system_table_mods);extern Oid heap_create_with_catalog(const char *relname, Oid relnamespace, Oid reltablespace, Oid relid, Oid ownerid, TupleDesc tupdesc, char relkind, bool shared_relation, bool oidislocal, int oidinhcount, OnCommitAction oncommit, Datum reloptions, bool allow_system_table_mods);extern void heap_drop_with_catalog(Oid relid);extern void heap_truncate(List *relids);extern void heap_truncate_check_FKs(List *relations, bool tempTables);extern List *heap_truncate_find_FKs(List *relationIds);extern void InsertPgClassTuple(Relation pg_class_desc, Relation new_rel_desc, Oid new_rel_oid, Datum reloptions);extern List *AddRelationRawConstraints(Relation rel, List *rawColDefaults, List *rawConstraints);extern void StoreAttrDefault(Relation rel, AttrNumber attnum, char *adbin);extern Node *cookDefault(ParseState *pstate, Node *raw_default, Oid atttypid, int32 atttypmod, char *attname);extern int RemoveRelConstraints(Relation rel, const char *constrName, DropBehavior behavior);extern void DeleteRelationTuple(Oid relid);extern void DeleteAttributeTuples(Oid relid);extern void RemoveAttributeById(Oid relid, AttrNumber attnum);extern void RemoveAttrDefault(Oid relid, AttrNumber attnum, DropBehavior behavior, bool complain);extern void RemoveAttrDefaultById(Oid attrdefId);extern void RemoveStatistics(Oid relid, AttrNumber attnum);extern Form_pg_attribute SystemAttributeDefinition(AttrNumber attno, bool relhasoids);extern Form_pg_attribute SystemAttributeByName(const char *attname, bool relhasoids);extern void CheckAttributeNamesTypes(TupleDesc tupdesc, char relkind);extern void CheckAttributeType(const char *attname, Oid atttypid);#endif /* HEAP_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?