Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
None
Description
The call stack for DROP TEMPORARY TABLE is:
THD::drop_temporary_table()
mysql_rm_table_no_locks()
free_tmp_table_share()
THD::free_tmp_table_share()
THD::rm_temporary_table()
ha_delete_table()
The problem is that free_temp_table_share() is a void function and thus the caller doesn't know if ha_delete_table() failed or not.
How to repeat:
in gdb, put a breakpoint at: maria_delete_table()
Execute in command tool:
create temporary table t1 (a int) engine=aria;
drop temporary table t1;
Attachments
Issue Links
- relates to
-
MDEV-11412 Ensure that table is truly dropped when using DROP TABLE
-
- Closed
-
MDEV-11412in 10.5 is when THD::rm_temporary_table started emitting warnings about deleted files errors (except ENOENT).As future feature:
If we could check O_TMPFILE_works from
MDEV-15584/ 3edac3f18d2d74f68e6f9f9b41e5d05a5c8ca9c5 we wouldn't even need to delete it.