]> granicus.if.org Git - postgresql/blobdiff - src/include/commands/view.h
Phase 2 of pgindent updates.
[postgresql] / src / include / commands / view.h
index 7046e67ec9fd77aa3428bc6d306a402d411673ec..cf08ce2ac711c1903b2d0d8be02620c16512a33f 100644 (file)
@@ -4,18 +4,24 @@
  *
  *
  *
- * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/include/commands/view.h,v 1.27 2008/06/14 18:04:34 tgl 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);
 
-#endif   /* VIEW_H */
+extern ObjectAddress DefineView(ViewStmt *stmt, const char *queryString,
+                  int stmt_location, int stmt_len);
+
+extern void StoreViewQuery(Oid viewOid, Query *viewParse, bool replace);
+
+#endif                                                 /* VIEW_H */