summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/xb_file_key_management.result
blob: 30aa530698bd490b830dbcd9824cef90964c2d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;