1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Fix a test.

This commit is contained in:
Marko Mäkelä
2017-01-27 12:21:31 +02:00
parent 4ee7174479
commit 8daa87dc06
3 changed files with 1 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
--let $simulate_comp_failures_save = `SELECT @@innodb_simulate_comp_failures`
# since this test generates lot of errors in log, suppress checking errors
--disable_query_log
call mtr.add_suppression("InnoDB: Simulating a compression failure for table `test`\\.`t1`");
--enable_query_log

View File

@@ -1,7 +1,6 @@
#
# 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

View File

@@ -1,7 +1,6 @@
#
# Testing robustness against random compression failures
#
call mtr.add_suppression(".*");
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