Header And Logo

PostgreSQL
| The world's most advanced open source database.

view.h

Go to the documentation of this file.
00001 /*-------------------------------------------------------------------------
00002  *
00003  * view.h
00004  *
00005  *
00006  *
00007  * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
00008  * Portions Copyright (c) 1994, Regents of the University of California
00009  *
00010  * src/include/commands/view.h
00011  *
00012  *-------------------------------------------------------------------------
00013  */
00014 #ifndef VIEW_H
00015 #define VIEW_H
00016 
00017 #include "nodes/parsenodes.h"
00018 
00019 extern Oid DefineView(ViewStmt *stmt, const char *queryString);
00020 
00021 extern void StoreViewQuery(Oid viewOid, Query *viewParse, bool replace);
00022 
00023 #endif   /* VIEW_H */