2
# Test how DROP TABLE works if the index or data file doesn't exists
6
drop table if exists t1,t2;
9
create table t1 (a int) engine=myisam;
10
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYI
11
drop table if exists t1;
12
create table t1 (a int) engine=myisam;
13
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYI
16
create table t1 (a int) engine=myisam;
17
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYD