mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
13 lines
306 B
Text
13 lines
306 B
Text
CREATE TABLE t1 (i int) ENGINE=INNODB;
|
|
CREATE TABLE t2 (i int) ENGINE=INNODB;
|
|
CREATE TABLE t3 (i int) ENGINE=INNODB;
|
|
# xtrabackup prepare
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart server
|
|
CREATE TABLE t1(i int);
|
|
DROP TABLE t1;
|
|
CREATE TABLE t2(i int);
|
|
DROP TABLE t2;
|
|
DROP TABLE t3;
|