mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
b5615eff0d
Idea comes from MySQL which does something similar
16 lines
341 B
Text
16 lines
341 B
Text
CREATE TABLE t(c VARCHAR(10)) ENGINE INNODB encrypted=yes;
|
|
INSERT INTO t VALUES('foobar1');
|
|
# 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;
|