mirror of
https://github.com/MariaDB/server.git
synced 2025-02-11 16:05:34 +01:00
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;
|