]> granicus.if.org Git - postgresql/blob - src/include/commands/view.h
2624d7965b68b34c3e5647d5dd2a3ca3f951dc86
[postgresql] / src / include / commands / view.h
1 /*-------------------------------------------------------------------------
2  *
3  * view.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/commands/view.h,v 1.20 2004/08/29 04:13:06 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef VIEW_H
15 #define VIEW_H
16
17 #include "nodes/parsenodes.h"
18
19 extern void DefineView(const RangeVar *view, Query *view_parse, bool replace);
20 extern void RemoveView(const RangeVar *view, DropBehavior behavior);
21
22 #endif   /* VIEW_H */