summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/xb_file_key_management.result
blob: cf8edb310b81b7a4c4e04a0636bb159d4f841f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CREATE TABLE t(c TEXT) ENGINE INNODB encrypted=yes;
INSERT INTO t VALUES(REPEAT('fubar',100));
INSERT INTO t VALUES('foobar1');
DELETE FROM t LIMIT 1;
# 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;