diff options
Diffstat (limited to 'mysql-test/suite/mariabackup/mdev-14447.result')
-rw-r--r-- | mysql-test/suite/mariabackup/mdev-14447.result | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/mdev-14447.result b/mysql-test/suite/mariabackup/mdev-14447.result new file mode 100644 index 00000000..16d3ab56 --- /dev/null +++ b/mysql-test/suite/mariabackup/mdev-14447.result @@ -0,0 +1,22 @@ +call mtr.add_suppression("InnoDB: New log files created"); +SET GLOBAL innodb_file_per_table=0; +CREATE TABLE t(a varchar(40) PRIMARY KEY, b varchar(40), c varchar(40), d varchar(40), index(b,c,d)) ENGINE INNODB; +# Create full backup , modify table, then create incremental/differential backup +SET debug_dbug='+d,skip_page_checksum',foreign_key_checks=0,unique_checks=0; +BEGIN; +INSERT INTO t select uuid(), uuid(), uuid(), uuid() from seq_1_to_100000; +COMMIT; +SELECT count(*) FROM t; +count(*) +100000 +# Prepare full backup, apply incremental one +# Restore and check results +# shutdown server +# remove datadir +# xtrabackup move back +# restart server +# restart +SELECT count(*) FROM t; +count(*) +100000 +DROP TABLE t; |