mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
b5615eff0d
Idea comes from MySQL which does something similar
11 lines
221 B
Text
11 lines
221 B
Text
CREATE TABLE t(c VARCHAR(10)) ENGINE INNODB encrypted=yes;
|
|
INSERT INTO t VALUES('foobar1');
|
|
# xtrabackup backup
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart
|
|
SELECT * from t;
|
|
c
|
|
foobar1
|
|
DROP TABLE t;
|