heap.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * heap.h
  4.  *   prototypes for functions in lib/catalog/heap.c
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: heap.h,v 1.19.2.1 1999/07/30 18:52:53 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef HEAP_H
  14. #define HEAP_H
  15. #include "utils/rel.h"
  16. extern Oid RelnameFindRelid(char *relname);
  17. extern Relation heap_create(char *relname, TupleDesc att,
  18. bool isnoname, bool istemp);
  19. extern Oid heap_create_with_catalog(char *relname,
  20.  TupleDesc tupdesc, char relkind, bool istemp);
  21. extern void heap_destroy_with_catalog(char *relname);
  22. extern void heap_destroy(Relation rel);
  23. extern void InitNoNameRelList(void);
  24. extern void DestroyNoNameRels(void);
  25. #endif  /* HEAP_H */