]> granicus.if.org Git - postgresql/blobdiff - src/include/commands/view.h
Phase 2 of pgindent updates.
[postgresql] / src / include / commands / view.h
index e476d8224e224c2a7931ecb15e4e78620686fcb0..cf08ce2ac711c1903b2d0d8be02620c16512a33f 100644 (file)
@@ -4,19 +4,24 @@
  *
  *
  *
- * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: view.h,v 1.17 2002/09/02 02:13:02 tgl 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);
 
-#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 */