mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
11 lines
208 B
Text
11 lines
208 B
Text
CREATE TABLE t1(i int) ENGINE INNODB;
|
|
# xtrabackup prepare
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart server
|
|
CREATE TABLE t1(i int);
|
|
DROP TABLE t1;
|
|
SELECT * from t2;
|
|
i
|
|
DROP TABLE t2;
|