mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Fix a test.
This commit is contained in:
parent
e92ee13254
commit
c6039a11c6
3 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@
|
|||
--let $simulate_comp_failures_save = `SELECT @@innodb_simulate_comp_failures`
|
||||
|
||||
# since this test generates lot of errors in log, suppress checking errors
|
||||
call mtr.add_suppression(".*");
|
||||
call mtr.add_suppression("InnoDB: Simulating a compression failure for table `test`\\.`t1`");
|
||||
--enable_query_log
|
||||
|
||||
# create the table with compressed pages of size 8K.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#
|
||||
# Testing robustness against random compression failures
|
||||
#
|
||||
call mtr.add_suppression("InnoDB: Simulating a compression failure for table `test`\\.`t1`");
|
||||
CREATE TABLE t1(id INT AUTO_INCREMENT PRIMARY KEY, msg VARCHAR(255), KEY msg_i(msg)) ENGINE=INNODB ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;
|
||||
SHOW CREATE TABLE t1;
|
||||
Table Create Table
|
||||
|
|
|
@ -1388,9 +1388,8 @@ page_zip_compress(
|
|||
|
||||
#ifdef UNIV_DEBUG
|
||||
ib::error()
|
||||
<< "InnoDB: Simulating a compression failure"
|
||||
<< " for table "
|
||||
<< (index->table->name.m_name)
|
||||
<< "Simulating a compression failure"
|
||||
<< " for table " << index->table->name
|
||||
<< " index "
|
||||
<< index->name()
|
||||
<< " page "
|
||||
|
|
Loading…
Add table
Reference in a new issue