26
26
create table break_frm(a int) engine=myisam;
27
27
insert into break_frm values(1);
28
28
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.frm
29
30
--echo "We get an error because the table is in the definition cache"
30
31
--error ER_TABLE_EXISTS_ERROR
31
32
create table break_frm(a int, b int);