mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
15 lines
289 B
Text
15 lines
289 B
Text
|
CREATE TABLE t(i INT) ENGINE INNODB;
|
||
|
INSERT INTO t VALUES(1);
|
||
|
# xtrabackup backup
|
||
|
FOUND 1 /Invalid log block checksum/ in backup.log
|
||
|
INSERT INTO t VALUES(2);
|
||
|
# xtrabackup prepare
|
||
|
# shutdown server
|
||
|
# remove datadir
|
||
|
# xtrabackup move back
|
||
|
# restart server
|
||
|
SELECT * FROM t;
|
||
|
i
|
||
|
1
|
||
|
DROP TABLE t;
|