Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
10 changed files
with
158 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| --source include/have_debug.inc | ||
|
|
||
| CREATE TABLE t(i INT) ENGINE INNODB; | ||
| INSERT INTO t VALUES(1); | ||
| echo # xtrabackup backup; | ||
| let $targetdir=$MYSQLTEST_VARDIR/tmp/backup; | ||
| let $backuplog=$MYSQLTEST_VARDIR/tmp/backup.log; | ||
|
|
||
| --disable_result_log | ||
| exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$targetdir --dbug=+d,log_intermittent_checksum_mismatch > $backuplog; | ||
| --enable_result_log | ||
|
|
||
| --let SEARCH_RANGE = 10000000 | ||
| --let SEARCH_PATTERN=Invalid log block checksum | ||
| --let SEARCH_FILE=$backuplog | ||
| --source include/search_pattern_in_file.inc | ||
| remove_file $backuplog; | ||
|
|
||
|
|
||
| INSERT INTO t VALUES(2); | ||
|
|
||
|
|
||
| echo # xtrabackup prepare; | ||
| --disable_result_log | ||
| exec $XTRABACKUP --prepare --target-dir=$targetdir; | ||
| -- source include/restart_and_restore.inc | ||
| --enable_result_log | ||
|
|
||
| SELECT * FROM t; | ||
| DROP TABLE t; | ||
| rmdir $targetdir; | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters