polardbxengine/mysql-test/suite/xengine/r/persistent_cache.result

12 lines
234 B
Plaintext

DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (a int primary key) ENGINE=XENGINE;
insert into t1 values (1);
set global xengine_force_flush_memtable_now=1;
select * from t1 where a = 1;
a
1
select * from t1 where a = 1;
a
1
drop table t1;