diff options
Diffstat (limited to 'mysql-test/suite/mariabackup/apply-log-only.result')
-rw-r--r-- | mysql-test/suite/mariabackup/apply-log-only.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/apply-log-only.result b/mysql-test/suite/mariabackup/apply-log-only.result new file mode 100644 index 00000000..d618a7bb --- /dev/null +++ b/mysql-test/suite/mariabackup/apply-log-only.result @@ -0,0 +1,10 @@ +call mtr.add_suppression("InnoDB: New log files created"); +CREATE TABLE t(a varchar(60)) ENGINE INNODB; +start transaction; +INSERT INTO t VALUES(1); +NOT FOUND /Rolled back recovered transaction/ in current_test +# expect NOT FOUND +SELECT count(*) FROM t; +count(*) +1 +DROP TABLE t; |