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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * view.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: view.h,v 1.7 1999/02/13 23:21:20 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef VIEW_H
  14. #define VIEW_H
  15. #include "nodes/parsenodes.h"
  16. extern char *MakeRetrieveViewRuleName(char *view_name);
  17. extern void DefineView(char *view_name, Query *view_parse);
  18. extern void RemoveView(char *view_name);
  19. #endif  /* VIEW_H */