summaryrefslogtreecommitdiff
path: root/mysql-test/r/query_cache_notembedded.result
diff options
context:
space:
mode:
authorDavi Arnaut <Davi.Arnaut@Sun.COM>2009-01-28 14:33:33 -0200
committerDavi Arnaut <Davi.Arnaut@Sun.COM>2009-01-28 14:33:33 -0200
commitaa0641dcf6da9d5ecf70d9963a61b2deac81b0b8 (patch)
treeb0dc0d9af6e42a95746f325e0fa8ce34f075b6ac /mysql-test/r/query_cache_notembedded.result
parent06e185280a4c2b6bae6f4b1b5a66947a49a449bd (diff)
downloadmariadb-git-aa0641dcf6da9d5ecf70d9963a61b2deac81b0b8.tar.gz
Remove test case for bug 40264.
Dirty close tricky does not work on Windows. mysql-test/r/query_cache_notembedded.result: Remove test case result. mysql-test/t/query_cache_notembedded.test: Remove test case.
Diffstat (limited to 'mysql-test/r/query_cache_notembedded.result')
-rw-r--r--mysql-test/r/query_cache_notembedded.result16
1 files changed, 0 insertions, 16 deletions
diff --git a/mysql-test/r/query_cache_notembedded.result b/mysql-test/r/query_cache_notembedded.result
index bf582bfaec6..8e5df012cfb 100644
--- a/mysql-test/r/query_cache_notembedded.result
+++ b/mysql-test/r/query_cache_notembedded.result
@@ -345,19 +345,3 @@ id
drop table t1;
drop function f1;
set GLOBAL query_cache_size=0;
-DROP TABLE IF EXISTS t1;
-FLUSH STATUS;
-SET GLOBAL query_cache_size=1048576;
-CREATE TABLE t1 (a INT);
-INSERT INTO t1 VALUES (1),(2),(3),(4),(5);
-SHOW STATUS LIKE 'Qcache_queries_in_cache';
-Variable_name Value
-Qcache_queries_in_cache 0
-LOCK TABLES t1 WRITE;
-SELECT * FROM t1;
-UNLOCK TABLES;
-SHOW STATUS LIKE 'Qcache_queries_in_cache';
-Variable_name Value
-Qcache_queries_in_cache 0
-DROP TABLE t1;
-SET GLOBAL query_cache_size= default;