mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
17 lines
404 B
Text
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;
|