1call mtr.add_suppression("InnoDB: Operating system error number ");
2call mtr.add_suppression("InnoDB: (The error means|If you are|Cannot open datafile) ");
3call mtr.add_suppression("InnoDB: Ignoring tablespace for `test`\.`t`");
4call mtr.add_suppression("InnoDB: Table test/t .* does not exist");
5CREATE TABLE t (a SERIAL) ENGINE=InnoDB;
6INSERT INTO t() VALUES();
7SHOW CREATE TABLE t;
8Table	Create Table
9t	CREATE TABLE `t` (
10  `a` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
11  UNIQUE KEY `a` (`a`)
12) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
13# restart
14SELECT * FROM t;
15ERROR HY000: Got error 194 "Tablespace is missing for a table" from storage engine InnoDB
16TRUNCATE TABLE t;
17ERROR HY000: Got error 194 "Tablespace is missing for a table" from storage engine InnoDB
18DROP TABLE t;
19