blob: c2bbdb5695bad3bfd217795282edd097a8694e8c (
plain)
1
2
3
4
5
|
call mtr.add_suppression("InnoDB: New log files created, LSN");
call mtr.add_suppression("InnoDB: Creating foreign key constraint system tables");
shutdown;
create table t1 (a int);
drop table t1;
|