]> granicus.if.org Git - postgresql/blobdiff - src/include/commands/view.h
Update copyright for 2016
[postgresql] / src / include / commands / view.h
index 2624d7965b68b34c3e5647d5dd2a3ca3f951dc86..99e456449dc0c17d4a3c6940bb55b309a63ba442 100644 (file)
@@ -4,19 +4,23 @@
  *
  *
  *
- * Portions Copyright (c) 1996-2004, 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.20 2004/08/29 04:13:06 momjian Exp $
+ * src/include/commands/view.h
  *
  *-------------------------------------------------------------------------
  */
 #ifndef VIEW_H
 #define VIEW_H
 
+#include "catalog/objectaddress.h"
 #include "nodes/parsenodes.h"
 
-extern void DefineView(const RangeVar *view, Query *view_parse, bool replace);
-extern void RemoveView(const RangeVar *view, DropBehavior behavior);
+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 */