summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/compat_xtrabackup.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/mariabackup/compat_xtrabackup.result')
-rw-r--r--mysql-test/suite/mariabackup/compat_xtrabackup.result21
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/compat_xtrabackup.result b/mysql-test/suite/mariabackup/compat_xtrabackup.result
new file mode 100644
index 00000000000..484dc0d7d46
--- /dev/null
+++ b/mysql-test/suite/mariabackup/compat_xtrabackup.result
@@ -0,0 +1,21 @@
+call mtr.add_suppression("InnoDB: New log files created");
+#
+# Start of 10.11 tests
+#
+#
+# MDEV-18931 Rename Mariabackup's xtrabackup_* files to mariadb_backup_*
+#
+CREATE TABLE t1(i INT PRIMARY KEY) ENGINE MYISAM;
+INSERT INTO t1 VALUES (1);
+# Prepare full backup, apply incremental one
+# shutdown server
+# remove datadir
+# xtrabackup move back
+# restart
+SELECT * FROM test.t1;
+i
+1
+DROP TABLE t1;
+#
+# End of 10.11 tests
+#