mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
17 lines
259 B
Plaintext
17 lines
259 B
Plaintext
CREATE TABLE t(i INT) ENGINE INNODB;
|
|
INSERT INTO t VALUES(1);
|
|
# xtrabackup backup
|
|
INSERT INTO t VALUES(2);
|
|
# xtrabackup prepare
|
|
db.opt.qp
|
|
t.frm.qp
|
|
t.ibd.qp
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart
|
|
SELECT * FROM t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|