diff options
author | Konstantin Osipov <kostja@sun.com> | 2010-03-13 13:58:27 +0300 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2010-03-13 13:58:27 +0300 |
commit | 7116431a8a089e2f32d756073968951760d629cf (patch) | |
tree | 6b9c6dacc901f2c4ee1b09bfa596846e1c345e4c /sql/sql_table.cc | |
parent | ea70b6a20a7fe27bdfe5ed0a828cdddf72b8a5d2 (diff) | |
download | mariadb-git-7116431a8a089e2f32d756073968951760d629cf.tar.gz |
A review comment for the fix for Bug#46672.
Remove unnecessary need_reopen loops.
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 8ba8c50b01e..163e4f34938 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -1811,7 +1811,7 @@ bool mysql_rm_table(THD *thd,TABLE_LIST *tables, my_bool if_exists, my_bool drop_temporary) { bool error; - Drop_table_error_handler err_handler(thd->get_internal_handler()); + Drop_table_error_handler err_handler; DBUG_ENTER("mysql_rm_table"); |