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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * catalog.h
  4.  *   prototypes for functions in lib/catalog/catalog.c
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: catalog.h,v 1.7.2.1 1999/07/30 18:52:53 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef CATALOG_H
  14. #define CATALOG_H
  15. #include "access/tupdesc.h"
  16. extern char *relpath(char *relname);
  17. extern bool IsSystemRelationName(char *relname);
  18. extern bool IsSharedSystemRelationName(char *relname);
  19. extern Oid newoid(void);
  20. extern void fillatt(TupleDesc att);
  21. #endif  /* CATALOG_H */