MDEV-24024 innodb.ibuf_not_empty failed in buildbot

Probably due to the changes to page flushing in MDEV-23399
(commit 7cffb5f6e8) the command
CHECK TABLE would occasionally report a different number of rows
for the corrupted secondary index. (The reported number was 991
instead of 990 on one occasion.)

Let us map all numbers to 990 in the output. We only care that the
injected corruption will be detected.
This commit is contained in:
Marko Mäkelä 2020-10-27 09:52:42 +02:00
parent c27e53f459
commit 00ddea4f2f

View file

@ -68,6 +68,7 @@ EOF
--let $restart_parameters= --innodb-force-recovery=6 --innodb-change-buffer-dump
--source include/start_mysqld.inc
--replace_regex /contains \d+ entries/contains 990 entries/
check table t1;
--source include/shutdown_mysqld.inc