summaryrefslogtreecommitdiff
path: root/storage/rocksdb/mysql-test/rocksdb/r/persistent_cache.result
blob: bc5739c2d9672e1cc04f23beacfe2f9fe2b9d99e (plain)
1
2
3
4
5
6
7
8
9
10
11
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;