summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/tar.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/mariabackup/tar.result')
-rw-r--r--mysql-test/suite/mariabackup/tar.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/tar.result b/mysql-test/suite/mariabackup/tar.result
new file mode 100644
index 00000000000..bbb546d7add
--- /dev/null
+++ b/mysql-test/suite/mariabackup/tar.result
@@ -0,0 +1,12 @@
+CREATE TABLE t(i INT) ENGINE INNODB;
+INSERT INTO t VALUES(1);
+# xtrabackup backup
+# xtrabackup prepare
+# shutdown server
+# remove datadir
+# xtrabackup move back
+# restart server
+SELECT * FROM t;
+i
+1
+DROP TABLE t;