]> granicus.if.org Git - postgresql/blobdiff - src/include/commands/view.h
Update copyright for 2016
[postgresql] / src / include / commands / view.h
index fe2f13a5f2d87b04db665bc581031574ed196a6c..99e456449dc0c17d4a3c6940bb55b309a63ba442 100644 (file)
@@ -4,18 +4,23 @@
  *
  *
  *
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/include/commands/view.h,v 1.28 2009/01/01 17:23:58 momjian Exp $
+ * src/include/commands/view.h
  *
  *-------------------------------------------------------------------------
  */
 #ifndef VIEW_H
 #define VIEW_H
 
+#include "catalog/objectaddress.h"
 #include "nodes/parsenodes.h"
 
-extern void DefineView(ViewStmt *stmt, const char *queryString);
+extern void validateWithCheckOption(char *value);
+
+extern ObjectAddress DefineView(ViewStmt *stmt, const char *queryString);
+
+extern void StoreViewQuery(Oid viewOid, Query *viewParse, bool replace);
 
 #endif   /* VIEW_H */