mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
Analysis: sync array output function, should make sure that all used pointers are valid before using them. Merge revision 4225 from lp:maria/5.5.
9 lines
288 B
Plaintext
9 lines
288 B
Plaintext
#
|
|
# 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(*)
|
|
100000
|