mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
12 lines
781 B
Text
12 lines
781 B
Text
--source include/have_innodb.inc
|
|
--source include/not_embedded.inc
|
|
call mtr.add_suppression("\\[Warning\\] InnoDB: innodb_open_files=.* is not greater than the number of system tablespace files, temporary tablespace files, innodb_undo_tablespaces=.*");
|
|
call mtr.add_suppression("\\[Warning\\] InnoDB: innodb_open_files=.* is exceeded \\(.* files stay open\\)");
|
|
let SEARCH_PATTERN= \[Warning\] InnoDB: innodb_open_files=.* is not greater than the number of system tablespace files, temporary tablespace files, innodb_undo_tablespaces=.*;
|
|
let SEARCH_FILE= $MYSQLTEST_VARDIR/log/mysqld.1.err;
|
|
--source include/search_pattern_in_file.inc
|
|
|
|
CREATE TABLE t1(f1 INT NOT NULL)ENGINE=InnoDB;
|
|
DROP TABLE t1;
|
|
let $restart_parameters=--innodb_open_files=0;
|
|
--source include/restart_mysqld.inc
|