1call mtr.add_suppression("InnoDB: New log files created"); 2CREATE TABLE t(i INT) ENGINE INNODB ENCRYPTED=YES; 3INSERT INTO t VALUES(1); 4# Create full backup , modify table, then create incremental/differential backup 5SET GLOBAL innodb_flush_log_at_trx_commit = 1; 6INSERT INTO t VALUES(2); 7SELECT * FROM t; 8i 91 102 11# Prepare full backup, apply incremental one 12# Restore and check results 13# shutdown server 14# remove datadir 15# xtrabackup move back 16# restart 17SELECT * FROM t; 18i 191 202 21DROP TABLE t; 22