1call mtr.add_suppression("InnoDB: New log files created");
2call mtr.add_suppression("InnoDB: Operating system error number .* in a file operation");
3call mtr.add_suppression("InnoDB: The error means the system cannot find the path specified");
4call mtr.add_suppression("InnoDB: If you are installing InnoDB, remember that you must create directories yourself, InnoDB does not create them");
5call mtr.add_suppression("InnoDB: Ignoring tablespace for `test`\\.`t21` because it could not be opened");
6call mtr.add_suppression("InnoDB: Cannot open datafile for read-only: ");
7call mtr.add_suppression("Table .* in the InnoDB data dictionary has tablespace id .*, but tablespace with that id or name does not exist");
8CREATE TABLE t1(i INT PRIMARY KEY auto_increment, a int) ENGINE INNODB;
9ALTER TABLE t1 FORCE, ALGORITHM=INPLACE;
10# No longer fails during full backup
11DROP TABLE t1;
12CREATE TABLE t1(i INT PRIMARY KEY auto_increment, a int) ENGINE INNODB;
13INSERT INTO t1(a) select 1 union select 2 union select 3;
14# Create full backup , modify table, then fails during creation of
15#		incremental/differential backup
16ALTER TABLE t1 FORCE, ALGORITHM=INPLACE;
17DROP TABLE t1;
18CREATE TABLE t1(i INT) ENGINE INNODB;
19INSERT INTO t1 VALUES(1);
20CREATE TABLE t21(i INT) ENGINE INNODB;
21INSERT INTO t21 VALUES(1);
22CREATE TABLE t2(i int) ENGINE INNODB;
23ALTER TABLE t21 FORCE, ALGORITHM=INPLACE;
24# Create partial backup (excluding table t21), Ignore the
25# unsupported redo log for the table t21.
26t1.ibd
27t2.ibd
28# Prepare the full backup
29t1.ibd
30t2.ibd
31DROP TABLE t1;
32DROP TABLE t2;
33DROP TABLE t21;
34