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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * temprel.h
  4.  *   Temporary relation functions
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: temprel.h,v 1.3.2.1 1999/08/02 05:25:26 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef TEMPREL_H
  14. #define TEMPREL_H
  15. #include "access/htup.h"
  16. void create_temp_relation(char *relname, HeapTuple pg_class_tuple);
  17. void remove_all_temp_relations(void);
  18. void remove_temp_relation(Oid relid);
  19. HeapTuple get_temp_rel_by_name(char *user_relname);
  20. #endif  /* TEMPREL_H */