mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
a0631e7221
Fix exit condition for the log copying thread.
10 lines
158 B
Text
10 lines
158 B
Text
CREATE TABLE t(i int);
|
|
INSERT INTO t VALUES(1);
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart server
|
|
SELECT * from t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|