2016-09-09 15:45:05 +02:00
|
|
|
call mtr.add_suppression("InnoDB: Cannot open datafile for read-only: .*");
|
2014-02-02 10:00:36 +01:00
|
|
|
SET GLOBAL innodb_file_per_table=1;
|
|
|
|
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
2016-08-12 10:17:45 +02:00
|
|
|
call mtr.add_suppression("InnoDB: Operating system error number .* in a file operation.");
|
|
|
|
call mtr.add_suppression("InnoDB: The error means the system cannot find the path specified.");
|
|
|
|
call mtr.add_suppression("InnoDB: If you are installing InnoDB, remember that you must create directories yourself, InnoDB does not create them.");
|
|
|
|
call mtr.add_suppression("InnoDB: Cannot open datafile for read-only: './test/t.ibd' OS error: .*");
|
|
|
|
call mtr.add_suppression("InnoDB: Ignoring tablespace `test/t` because it could not be opened.");
|
|
|
|
call mtr.add_suppression("InnoDB: Cannot calculate statistics for table .* because the .ibd file is missing. Please refer to .*");
|
2014-02-02 10:00:36 +01:00
|
|
|
call mtr.add_suppression("InnoDB: Error: trying to open a table, but could not$");
|
|
|
|
call mtr.add_suppression("MySQL is trying to open a table handle but the \.ibd file for$");
|
|
|
|
call mtr.add_suppression("InnoDB: Table 'test/t'$");
|
|
|
|
call mtr.add_suppression("Could not find a valid tablespace file for");
|
|
|
|
call mtr.add_suppression("InnoDB: Tablespace open failed for '\"test\"\.\"t\"', ignored");
|
|
|
|
call mtr.add_suppression("InnoDB: Failed to find tablespace for table '\"test\"\.\"t\"' in the cache");
|
|
|
|
call mtr.add_suppression("InnoDB: Cannot delete tablespace [0-9]+.*not found");
|
|
|
|
call mtr.add_suppression("Table .*t in the InnoDB data dictionary has tablespace id .*, but tablespace with that id or name does not exist");
|
|
|
|
SELECT * FROM t;
|
|
|
|
ERROR 42S02: Table 'test.t' doesn't exist in engine
|
|
|
|
ALTER TABLE t ADD INDEX (a), ALGORITHM=INPLACE;
|
|
|
|
ERROR 42S02: Table 'test.t' doesn't exist in engine
|
|
|
|
ALTER TABLE t1 ADD INDEX (a), ALGORITHM=COPY;
|
|
|
|
ERROR 42S02: Table 'test.t1' doesn't exist
|
|
|
|
ALTER TABLE t DISCARD TABLESPACE;
|
|
|
|
Warnings:
|
|
|
|
Warning 1812 Tablespace is missing for table 'test/t'
|
2016-08-12 10:17:45 +02:00
|
|
|
Warning 1812 Tablespace is missing for table 'test/t'
|
2014-02-02 10:00:36 +01:00
|
|
|
DROP TABLE t;
|