EVOLUTION-MANAGER
Edit File: max_open_files.result
CALL mtr.add_suppression("RocksDB: rocksdb_max_open_files should not be greater than the open_files_limit*"); FOUND 1 /RocksDB: rocksdb_max_open_files should not be greater than the open_files_limit/ in rocksdb.max_open_files.err SELECT FLOOR(@@global.open_files_limit / 2) = @@global.rocksdb_max_open_files; FLOOR(@@global.open_files_limit / 2) = @@global.rocksdb_max_open_files 1 SELECT @@global.open_files_limit - 1 = @@global.rocksdb_max_open_files; @@global.open_files_limit - 1 = @@global.rocksdb_max_open_files 1 SELECT @@global.rocksdb_max_open_files; @@global.rocksdb_max_open_files 0 CREATE TABLE t1(a INT) ENGINE=ROCKSDB; INSERT INTO t1 VALUES(0),(1),(2),(3),(4); SET GLOBAL rocksdb_force_flush_memtable_and_lzero_now=1; DROP TABLE t1; SELECT @@global.rocksdb_max_open_files; @@global.rocksdb_max_open_files -1 SELECT FLOOR(@@global.open_files_limit / 2) = @@global.rocksdb_max_open_files; FLOOR(@@global.open_files_limit / 2) = @@global.rocksdb_max_open_files 1