mariadb/mysql-test/suite/mariabackup/xb_file_key_management.result
2017-04-27 19:12:40 +02:00

17 lines
404 B
Text

CREATE TABLE t(c VARCHAR(10)) ENGINE INNODB encrypted=yes;
INSERT INTO t VALUES('foobar1');
# xtrabackup backup
NOT FOUND /foobar1/ in xtrabackup_logfile
# expect NOT FOUND
INSERT INTO t VALUES('foobar2');
# xtrabackup prepare
# shutdown server
# remove datadir
# xtrabackup move back
# restart server
NOT FOUND /foobar1/ in xtrabackup_logfile
# expect NOT FOUND
SELECT * FROM t;
c
foobar1
DROP TABLE t;