mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
b5615eff0d
Idea comes from MySQL which does something similar
10 lines
151 B
Text
10 lines
151 B
Text
CREATE TABLE t(i int);
|
|
INSERT INTO t VALUES(1);
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart
|
|
SELECT * from t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|