diff options
author | monty@mashka.mysql.fi <> | 2003-01-04 15:37:20 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-04 15:37:20 +0200 |
commit | 6d6f051178c7c3201c77b5fa427252d50bd5fea3 (patch) | |
tree | aa5cff7e153050d86b7effd693496f071d21e24a /sql/mysql_priv.h | |
parent | 07daf3169e0d55d31b2974098f9002f8508c4186 (diff) | |
download | mariadb-git-6d6f051178c7c3201c77b5fa427252d50bd5fea3.tar.gz |
Added support for DROP TEMPORARY TABLE
Removed mysql_warnings() API function.
Post merge fixes.
Diffstat (limited to 'sql/mysql_priv.h')
-rw-r--r-- | sql/mysql_priv.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h index cf0cefd76da..3d5adf24e03 100644 --- a/sql/mysql_priv.h +++ b/sql/mysql_priv.h @@ -323,11 +323,12 @@ int mysql_create_db(THD *thd, char *db, HA_CREATE_INFO *create, bool silent); int mysql_alter_db(THD *thd, const char *db, HA_CREATE_INFO *create); int mysql_rm_db(THD *thd,char *db,bool if_exists, bool silent); void mysql_binlog_send(THD* thd, char* log_ident, my_off_t pos, ushort flags); -int mysql_rm_table(THD *thd,TABLE_LIST *tables, my_bool if_exists); +int mysql_rm_table(THD *thd,TABLE_LIST *tables, my_bool if_exists, + my_bool drop_temporary); int mysql_rm_table_part2(THD *thd, TABLE_LIST *tables, bool if_exists, - bool log_query); + bool drop_temporary, bool log_query); int mysql_rm_table_part2_with_lock(THD *thd, TABLE_LIST *tables, - bool if_exists, + bool if_exists, bool drop_temporary, bool log_query); int quick_rm_table(enum db_type base,const char *db, const char *table_name); |