summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_cache.result
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2004-11-25 19:49:50 +0200
committerunknown <bell@sanja.is.com.ua>2004-11-25 19:49:50 +0200
commit93191c739e8302c312d283169c736867cf8327b3 (patch)
treef6eff6e65503b4149f17a6775827aa490d4780fd /mysql-test/r/ndb_cache.result
parent92882749589a2d3353119fb5fed7299b62d2f8e9 (diff)
downloadmariadb-git-93191c739e8302c312d283169c736867cf8327b3.tar.gz
new NDB test with QC
sql/sql_cache.cc: if we removed old values in cache, then we can cache new one
Diffstat (limited to 'mysql-test/r/ndb_cache.result')
-rw-r--r--mysql-test/r/ndb_cache.result43
1 files changed, 0 insertions, 43 deletions
diff --git a/mysql-test/r/ndb_cache.result b/mysql-test/r/ndb_cache.result
index 714e1831267..e69de29bb2d 100644
--- a/mysql-test/r/ndb_cache.result
+++ b/mysql-test/r/ndb_cache.result
@@ -1,43 +0,0 @@
-set GLOBAL query_cache_size=1355776;
-reset query cache;
-flush status;
-drop table if exists t1,t2;
-CREATE TABLE t1 (a int) ENGINE=ndbcluster;
-CREATE TABLE t2 (a int);
-select * from t1;
-a
-show status like "Qcache_queries_in_cache";
-Variable_name Value
-Qcache_queries_in_cache 0
-show status like "Qcache_inserts";
-Variable_name Value
-Qcache_inserts 0
-show status like "Qcache_hits";
-Variable_name Value
-Qcache_hits 0
-select * from t2;
-a
-show status like "Qcache_queries_in_cache";
-Variable_name Value
-Qcache_queries_in_cache 1
-show status like "Qcache_inserts";
-Variable_name Value
-Qcache_inserts 1
-show status like "Qcache_hits";
-Variable_name Value
-Qcache_hits 0
-select * from t1;
-a
-select * from t2;
-a
-show status like "Qcache_queries_in_cache";
-Variable_name Value
-Qcache_queries_in_cache 1
-show status like "Qcache_inserts";
-Variable_name Value
-Qcache_inserts 1
-show status like "Qcache_hits";
-Variable_name Value
-Qcache_hits 1
-drop table t1, t2;
-SET GLOBAL query_cache_size=0;