heap.h

来自「关系型数据库 Postgresql 6.5.2」· C头文件 代码 · 共 32 行

H
32
字号
/*------------------------------------------------------------------------- * * heap.h *	  prototypes for functions in lib/catalog/heap.c * * * Copyright (c) 1994, Regents of the University of California * * $Id: heap.h,v 1.19.2.1 1999/07/30 18:52:53 scrappy Exp $ * *------------------------------------------------------------------------- */#ifndef HEAP_H#define HEAP_H#include "utils/rel.h"extern Oid	RelnameFindRelid(char *relname);extern Relation heap_create(char *relname, TupleDesc att,			bool isnoname, bool istemp);extern Oid heap_create_with_catalog(char *relname,						 TupleDesc tupdesc, char relkind, bool istemp);extern void heap_destroy_with_catalog(char *relname);extern void heap_destroy(Relation rel);extern void InitNoNameRelList(void);extern void DestroyNoNameRels(void);#endif	 /* HEAP_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?