diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 15:45:31 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 15:45:31 +0200 |
commit | e5a323e107767ceb5106b85d077d4ac9d2d37778 (patch) | |
tree | 3ab2bf9c443c5476108d251ac6f9aa9623c2aac3 /sql/sql_db.cc | |
parent | f532653c2920490ac15ad70db0f2f1aaaacb92fe (diff) | |
download | mariadb-git-e5a323e107767ceb5106b85d077d4ac9d2d37778.tar.gz |
single table discovery: handlerton::discover_table() method.
fixes for need_full_discover_for_existence mode
Diffstat (limited to 'sql/sql_db.cc')
-rw-r--r-- | sql/sql_db.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sql/sql_db.cc b/sql/sql_db.cc index 6dee6b4bcc5..d4f8431beec 100644 --- a/sql/sql_db.cc +++ b/sql/sql_db.cc @@ -832,11 +832,7 @@ bool mysql_rm_db(THD *thd,char *db,bool if_exists, bool silent) mysql_ha_rm_tables(thd, tables); for (table= tables; table; table= table->next_local) - { - tdc_remove_table(thd, TDC_RT_REMOVE_ALL, table->db, table->table_name, - false); deleted_tables++; - } thd->push_internal_handler(&err_handler); if (!thd->killed && |