summaryrefslogtreecommitdiff
path: root/sql/sql_view.h
diff options
context:
space:
mode:
authorunknown <evgen@sunlight.local>2006-08-09 00:05:42 +0400
committerunknown <evgen@sunlight.local>2006-08-09 00:05:42 +0400
commit1e9ebd010a6b6c7a078d0caa13f9c8145dec1d50 (patch)
treeab30eaf93e4f7a9c072d16c535283e96bca6260e /sql/sql_view.h
parentc8673b09b871f5c6d55ce69e8302dbf0e5b2c348 (diff)
downloadmariadb-git-1e9ebd010a6b6c7a078d0caa13f9c8145dec1d50.tar.gz
sql_base.cc, unireg.h, sql_lex.h, table.cc, sql_view.h, sql_view.cc:
Correct memory leak fix sql/unireg.h: Correct memory leak fix sql/table.cc: Correct memory leak fix sql/sql_view.h: Correct memory leak fix sql/sql_view.cc: Correct memory leak fix sql/sql_lex.h: Correct memory leak fix sql/sql_base.cc: Correct memory leak fix
Diffstat (limited to 'sql/sql_view.h')
-rw-r--r--sql/sql_view.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_view.h b/sql/sql_view.h
index cd61d7e9e71..b6c27a60eeb 100644
--- a/sql/sql_view.h
+++ b/sql/sql_view.h
@@ -19,7 +19,8 @@
bool mysql_create_view(THD *thd,
enum_view_create_mode mode);
-bool mysql_make_view(THD *thd, File_parser *parser, TABLE_LIST *table);
+bool mysql_make_view(THD *thd, File_parser *parser, TABLE_LIST *table,
+ uint flags);
bool mysql_drop_view(THD *thd, TABLE_LIST *view, enum_drop_mode drop_mode);