summaryrefslogtreecommitdiff
path: root/sql/handler.cc
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2020-06-15 14:32:53 +0200
committerSergei Golubchik <serg@mariadb.org>2020-07-04 01:44:46 +0200
commit529b6dffe9e620d7cb1da30e1df6eebda66f01ee (patch)
treeb5b72ea0cd0f52872b984106c45f903d1cb234b9 /sql/handler.cc
parent35f566db8d847c707d0ba7f3de239bfeee9ca845 (diff)
downloadmariadb-git-529b6dffe9e620d7cb1da30e1df6eebda66f01ee.tar.gz
small cleanup
Diffstat (limited to 'sql/handler.cc')
-rw-r--r--sql/handler.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/handler.cc b/sql/handler.cc
index d81684f7c5f..2259e7a8e49 100644
--- a/sql/handler.cc
+++ b/sql/handler.cc
@@ -5011,8 +5011,7 @@ static my_bool delete_table_force(THD *thd, plugin_ref plugin, void *arg)
!(hton->flags & HTON_AUTOMATIC_DELETE_TABLE))
{
int error;
- error= ha_delete_table(thd, hton, param->path, param->db,
- param->alias, 0);
+ error= ha_delete_table(thd, hton, param->path, param->db, param->alias, 0);
if (error > 0 && !non_existing_table_error(error))
param->error= error;
if (error == 0)