mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 23:54:31 +02: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;
|