mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
2e814d4702
Contains also MDEV-10547: Test multi_update_innodb fails with InnoDB 5.7 The failure happened because 5.7 has changed the signature of the bool handler::primary_key_is_clustered() const virtual function ("const" was added). InnoDB was using the old signature which caused the function not to be used. MDEV-10550: Parallel replication lock waits/deadlock handling does not work with InnoDB 5.7 Fixed mutexing problem on lock_trx_handle_wait. Note that rpl_parallel and rpl_optimistic_parallel tests still fail. MDEV-10156 : Group commit tests fail on 10.2 InnoDB (branch bb-10.2-jan) Reason: incorrect merge MDEV-10550: Parallel replication can't sync with master in InnoDB 5.7 (branch bb-10.2-jan) Reason: incorrect merge
101 lines
2.8 KiB
Text
101 lines
2.8 KiB
Text
#
|
|
# Test opening a corrupted table.
|
|
#
|
|
# Valgrind can hang or return spurious messages on DBUG_SUICIDE
|
|
source include/not_valgrind.inc;
|
|
# Avoid CrashReporter popup on Mac
|
|
source include/not_crashrep.inc;
|
|
# Restarting is not supported under embedded
|
|
source include/not_embedded.inc;
|
|
# Require InnoDB
|
|
source include/have_innodb.inc;
|
|
# Require Debug for SET DEBUG
|
|
source include/have_debug.inc;
|
|
# Not encrypted tables
|
|
source include/not_encrypted.inc;
|
|
# Test could open crash reporter on Windows
|
|
# if compiler set up
|
|
source include/not_windows.inc;
|
|
|
|
--disable_query_log
|
|
CALL mtr.add_suppression("\\[ERROR\\] \\[FATAL\\] InnoDB: Unable to read page \\[page id: space=.*, page number=.*\\] into the buffer pool after 100 attempts");
|
|
CALL mtr.add_suppression("\\[ERROR\\] InnoDB: Database page corruption on disk or a failed");
|
|
--enable_query_log
|
|
|
|
|
|
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY, b TEXT) ROW_FORMAT=COMPACT ENGINE=InnoDB;
|
|
INSERT INTO t1 (b) VALUES ('corrupt me');
|
|
--disable_query_log
|
|
--let $i = 10
|
|
while ($i)
|
|
{
|
|
INSERT INTO t1 (b) VALUES (REPEAT('abcdefghijklmnopqrstuvwxyz', 100));
|
|
dec $i;
|
|
}
|
|
--enable_query_log
|
|
INSERT INTO t1 (b) VALUES ('corrupt me');
|
|
|
|
let $MYSQLD_DATADIR=`select @@datadir`;
|
|
let t1_IBD = $MYSQLD_DATADIR/test/t1.ibd;
|
|
|
|
--source include/shutdown_mysqld.inc
|
|
|
|
--echo # Backup the t1.ibd before corrupting
|
|
--copy_file $t1_IBD $MYSQLD_DATADIR/test/t1.ibd.backup
|
|
|
|
--echo # Corrupt the table
|
|
|
|
perl;
|
|
use strict;
|
|
use warnings;
|
|
use Fcntl qw(:DEFAULT :seek);
|
|
|
|
my $ibd_file = $ENV{'t1_IBD'};
|
|
|
|
my $chunk;
|
|
my $len;
|
|
|
|
sysopen IBD_FILE, $ibd_file, O_RDWR || die "Unable to open $ibd_file";
|
|
|
|
while ($len = sysread IBD_FILE, $chunk, 1024)
|
|
{
|
|
if ($chunk =~ s/corrupt me/korrupt me/)
|
|
{
|
|
print "Munged a string.\n";
|
|
sysseek IBD_FILE, -$len, SEEK_CUR;
|
|
syswrite IBD_FILE, $chunk, $len;
|
|
}
|
|
}
|
|
|
|
close IBD_FILE;
|
|
EOF
|
|
|
|
--source include/start_mysqld.inc
|
|
|
|
SET DEBUG_DBUG = '+d,innodb_page_corruption_retries';
|
|
|
|
--echo # Write file to make mysql-test-run.pl expect the "crash", but don't
|
|
--echo # start it until it's told to
|
|
--exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
|
|
|
|
--echo # The below SELECT query will crash the server because some pages
|
|
--echo # on the disk are corrupted
|
|
--error 2013
|
|
SELECT * FROM t1;
|
|
|
|
# The below mtr command --remove_file fails randomly on windows with
|
|
# error number 13 which is permission denied on nix systems. We sleep
|
|
# 1 second hoping that any process holding lock on t1.ibd is released.
|
|
SLEEP 1;
|
|
|
|
--echo # Restore the original t1.ibd
|
|
--remove_file $MYSQLD_DATADIR/test/t1.ibd
|
|
--move_file $MYSQLD_DATADIR/test/t1.ibd.backup $MYSQLD_DATADIR/test/t1.ibd
|
|
|
|
--source include/start_mysqld.inc
|
|
|
|
# Note SET DEBUG = '-d,innodb_page_corruption_retries' is not required
|
|
# because the session information is lost after server restart
|
|
|
|
--echo # Cleanup
|
|
DROP TABLE t1;
|