summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/mariabackup/xb_file_key_management.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/mariabackup/xb_file_key_management.result')
-rw-r--r--mysql-test/suite/mariabackup/xb_file_key_management.result16
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/xb_file_key_management.result b/mysql-test/suite/mariabackup/xb_file_key_management.result
new file mode 100644
index 00000000..6cedfd22
--- /dev/null
+++ b/mysql-test/suite/mariabackup/xb_file_key_management.result
@@ -0,0 +1,16 @@
+CREATE TABLE t(c VARCHAR(10)) ENGINE INNODB encrypted=yes;
+INSERT INTO t VALUES('foobar1');
+# xtrabackup backup
+NOT FOUND /foobar1/ in ib_logfile0
+# expect NOT FOUND
+INSERT INTO t VALUES('foobar2');
+# xtrabackup prepare
+# shutdown server
+# remove datadir
+# xtrabackup move back
+# restart
+ib_logfile0
+SELECT * FROM t;
+c
+foobar1
+DROP TABLE t;