Details
-
Technical task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
N/A
-
None
Description
If Spider engine is loaded into the server (even if it's not used), tables from other engines fail to be force-deleted – DELETE works without errors, but orphan files, e.g. .MYD/.MYI or .ibd, remain on the disk.
--let $datadir= `select @@datadir`
|
|
install soname 'ha_spider'; |
|
create table t1 (a int); |
|
--remove_file $datadir/test/t1.frm
|
|
drop table t1; |
--echo # Files in <datadir>/test:
|
--list_files $datadir/test |
bb-10.5-monty 645f37e49c |
drop table t1;
|
# Files in datadir/test:
|
db.opt
|
t1.MYD
|
t1.MYI
|