1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Removed not used ha_drop_table()

This was done after changing call in sql_select.cc from
ha_drop_table() to drop_table(), like in 11.5
This commit is contained in:
Monty
2024-11-19 20:15:45 +02:00
parent 69be363daa
commit 93fb364cd9
3 changed files with 1 additions and 30 deletions

View File

@ -20564,7 +20564,7 @@ free_tmp_table(THD *thd, TABLE *entry)
thd->tmp_tables_size+= (entry->file->stats.data_file_length +
entry->file->stats.index_file_length);
}
entry->file->ha_drop_table(entry->s->path.str);
entry->file->drop_table(entry->s->path.str);
delete entry->file;
entry->file= NULL;
entry->reset_created();