config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/innodb/t/

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
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/innodb/t/innodb_file_limit_check.test

--source include/have_innodb.inc
--source include/not_embedded.inc
--source include/big_test.inc

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;
--echo # Setting innodb_open_files to a very high value to achieve synchronicity across various platforms
let $restart_parameters = restart: --innodb_open_files=1000000;
-- source include/restart_mysqld.inc

let SEARCH_FILE= $MYSQLTEST_VARDIR/log/mysqld.1.err;
let SEARCH_PATTERN= \[Warning\] InnoDB: innodb_open_files should not be greater than the open_files_limit.;
--source include/search_pattern_in_file.inc

SELECT 1 UNION SELECT * FROM t1  UNION SELECT * FROM t1  UNION
SELECT * FROM t1  UNION SELECT * FROM t1  UNION SELECT * FROM
t1;

DROP TABLE t1;

Man Man