Current Path : /home/usr.opt/mysql57/mysql-test/suite/innodb/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/innodb/r/innodb_file_limit_check.result |
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;