From c55c292832e2776d37e06c43174ac006e00143a2 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 13 Jun 2020 21:23:19 +0200 Subject: introduce hton->drop_table() method first step in moving drop table out of the handler. todo: other methods that don't need an open table for now hton->drop_table is optional, for backward compatibility reasons --- sql/sql_table.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sql/sql_table.cc') diff --git a/sql/sql_table.cc b/sql/sql_table.cc index d6277e838be..de1ebb4f191 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -1168,7 +1168,7 @@ static int execute_ddl_log_action(THD *thd, DDL_LOG_ENTRY *ddl_log_entry) } else { - if (unlikely((error= file->ha_delete_table(ddl_log_entry->name)))) + if (unlikely((error= hton->drop_table(hton, ddl_log_entry->name)))) { if (!non_existing_table_error(error)) break; -- cgit v1.2.1