polardbxengine/mysql-test/suite/innodb/r/innodb_file_limit_check.result

13 lines
552 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 common value to have synchronicity across platforms
# restart: --innodb_open_files=1000000
Pattern "\[Warning\] .*MY-\d+.* innodb_open_files should not be greater than the open_files_limit." not found
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;