Merge branch '10.2' into 10.3

This commit is contained in:
Sergei Golubchik 2019-01-03 13:09:41 +01:00
commit 6bb11efa4a
125 changed files with 1579 additions and 609 deletions

View file

@ -0,0 +1,7 @@
call mtr.add_suppression("InnoDB: Table `test`.`t1` has an unreadable root page");
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY, b TEXT, c char(200)) ENGINE=InnoDB page_compressed=yes encrypted=yes;
insert into t1(b, c) values("mariadb", "mariabackup");
# Corrupt the table
# xtrabackup backup
FOUND 1 /Database page corruption detected.*/ in backup.log
drop table t1;