mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
a724dbc039
mysql-test/t/query_cache_notembedded.test: Rename: mysql-test/t/query_cache_noembeded.test -> mysql-test/t/query_cache_notembedded.test mysql-test/r/query_cache_notembedded.result: Rename: mysql-test/r/query_cache_noembeded.result -> mysql-test/r/query_cache_notembedded.result
18 lines
327 B
Text
18 lines
327 B
Text
set GLOBAL query_cache_size=1355776;
|
|
reset query cache;
|
|
flush status;
|
|
CREATE TABLE t1 ( a INT NOT NULL PRIMARY KEY AUTO_INCREMENT ) ENGINE =
|
|
MyISAM;
|
|
LOCK TABLE t1 READ LOCAL;
|
|
INSERT INTO t1 VALUES (), (), ();
|
|
SELECT * FROM t1;
|
|
a
|
|
SELECT * FROM t1;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
SELECT * FROM t1;
|
|
a
|
|
drop table t1;
|
|
set GLOBAL query_cache_size=default;
|