OSDN Git Service

First phase of applying Rod Taylor's pg_depend patch. This just adds
[pg-rex/syncrep.git] / src / include / commands / view.h
1 /*-------------------------------------------------------------------------
2  *
3  * view.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: view.h,v 1.16 2002/07/01 15:27:56 tgl 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);
20 extern void RemoveView(const RangeVar *view, DropBehavior behavior);
21
22 #endif   /* VIEW_H */