EVOLUTION-MANAGER
Edit File: persistent_cache.result
DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a int primary key) ENGINE=ROCKSDB; insert into t1 values (1); set global rocksdb_force_flush_memtable_now=1; select * from t1 where a = 1; a 1 select * from t1 where a = 1; a 1 drop table t1;