summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/xb_file_key_management.test
blob: 2a17695205341101b2729a2b32e938ec390501a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#--source include/innodb_page_size.inc
--source include/have_file_key_management.inc

CREATE TABLE t(c VARCHAR(10)) ENGINE INNODB encrypted=yes;
INSERT INTO t VALUES('foobar1');
echo # xtrabackup backup;
let $targetdir=$MYSQLTEST_VARDIR/tmp/backup;
--disable_result_log
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$targetdir;
--enable_result_log

--let SEARCH_RANGE = 10000000
--let SEARCH_PATTERN=foobar1
--let SEARCH_FILE=$targetdir/ib_logfile0
--source include/search_pattern_in_file.inc
--echo # expect NOT FOUND

INSERT INTO t VALUES('foobar2');
echo # xtrabackup prepare;

--disable_result_log
exec $XTRABACKUP  --prepare --target-dir=$targetdir;
-- source include/restart_and_restore.inc
--enable_result_log

--list_files $targetdir ib_logfile*
--cat_file $targetdir/ib_logfile0

SELECT * FROM t;
DROP TABLE t;
rmdir $targetdir;