]> granicus.if.org Git - postgresql/blobdiff - src/include/commands/view.h
Phase 2 of pgindent updates.
[postgresql] / src / include / commands / view.h
index a77ccc56f74fe0733f62cba8c2ea02139d33f1a6..cf08ce2ac711c1903b2d0d8be02620c16512a33f 100644 (file)
@@ -4,7 +4,7 @@
  *
  *
  *
- * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * src/include/commands/view.h
 #ifndef VIEW_H
 #define VIEW_H
 
+#include "catalog/objectaddress.h"
 #include "nodes/parsenodes.h"
 
 extern void validateWithCheckOption(char *value);
 
-extern Oid     DefineView(ViewStmt *stmt, const char *queryString);
+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 */
+#endif                                                 /* VIEW_H */