mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
b5615eff0d
Idea comes from MySQL which does something similar
11 lines
201 B
Text
11 lines
201 B
Text
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;
|