blob: 607460f4f05ff57392f54e67f586582ab10b288a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
CREATE TABLE t1(i int) ENGINE INNODB;
# xtrabackup prepare
# shutdown server
# remove datadir
# xtrabackup move back
# restart
CREATE TABLE t1(i int);
DROP TABLE t1;
SELECT * from t2;
i
DROP TABLE t2;
|