1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

sql_base.cc, unireg.h, sql_lex.h, table.cc, sql_view.h, sql_view.cc:

Correct memory leak fix
This commit is contained in:
evgen@sunlight.local
2006-08-09 00:05:42 +04:00
parent 8944564fd8
commit 1250b06ac9
6 changed files with 46 additions and 19 deletions

View File

@ -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);