X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=src%2Finclude%2Fcommands%2Fview.h;h=cf08ce2ac711c1903b2d0d8be02620c16512a33f;hb=c7b8998ebbf310a156aa38022555a24d98fdbfb4;hp=a77ccc56f74fe0733f62cba8c2ea02139d33f1a6;hpb=7e04792a1cbd1763edf72474f6b1fbad2cd0ad31;p=postgresql diff --git a/src/include/commands/view.h b/src/include/commands/view.h index a77ccc56f7..cf08ce2ac7 100644 --- a/src/include/commands/view.h +++ b/src/include/commands/view.h @@ -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 @@ -14,12 +14,14 @@ #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 */