]> granicus.if.org Git - postgresql/blob - src/include/commands/view.h
Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.
[postgresql] / src / include / commands / view.h
1 /*-------------------------------------------------------------------------
2  *
3  * view.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: view.h,v 1.9 2001/01/24 19:43:23 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef VIEW_H
15 #define VIEW_H
16
17 #include "nodes/parsenodes.h"
18
19 extern char *MakeRetrieveViewRuleName(char *view_name);
20 extern void DefineView(char *view_name, Query *view_parse);
21 extern void RemoveView(char *view_name);
22
23 #endif   /* VIEW_H */