mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
21 lines
342 B
Text
21 lines
342 B
Text
|
CREATE TABLE t(i INT) ENGINE INNODB;
|
||
|
INSERT INTO t VALUES(1);
|
||
|
# xtrabackup backup
|
||
|
# xtrabackup prepare
|
||
|
# shutdown server
|
||
|
# remove datadir
|
||
|
# xtrabackup move back
|
||
|
# restart
|
||
|
# shutdown server
|
||
|
# remove datadir
|
||
|
# xtrabackup move back
|
||
|
# restart
|
||
|
# shutdown server
|
||
|
# remove datadir
|
||
|
# xtrabackup move back
|
||
|
# restart
|
||
|
SELECT * FROM t;
|
||
|
i
|
||
|
1
|
||
|
DROP TABLE t;
|