mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
9abf426ee7
Reduce the number of rounds and operations to avoid testcase timeout.
8 lines
286 B
Text
8 lines
286 B
Text
#
|
|
# Testing robustness against random compression failures
|
|
#
|
|
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;
|
|
SET GLOBAL innodb_simulate_comp_failures = 25;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
1500
|