11 lines
457 B
Plaintext
11 lines
457 B
Plaintext
CALL mtr.add_suppression("innodb_open_files should not be greater than the open_files_limit.");
|
|
CREATE TABLE t1 (a INT)ENGINE=INNODB PARTITION BY HASH(a) PARTITIONS 1024;
|
|
# Setting innodb_open_files to a very high value to achieve synchronicity across various platforms
|
|
# restart: --innodb_open_files=1000000
|
|
SELECT 1 UNION SELECT * FROM t1 UNION SELECT * FROM t1 UNION
|
|
SELECT * FROM t1 UNION SELECT * FROM t1 UNION SELECT * FROM
|
|
t1;
|
|
1
|
|
1
|
|
DROP TABLE t1;
|