blob: 074de33bb2fbc46e4312ed156853369d5cc3ba37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
CREATE TABLE t1(i int) ENGINE INNODB;
set global innodb_log_checkpoint_now = 1;
# 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;
|