summaryrefslogtreecommitdiff
path: root/mysql-test/r/innodb_cache.result
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2003-08-12 23:45:04 +0300
committerunknown <bell@sanja.is.com.ua>2003-08-12 23:45:04 +0300
commitccee4f8483d204a2e4088d1dad283ece22be9a9c (patch)
tree9cab30ce5d275a228192d659d1cdc373545ea825 /mysql-test/r/innodb_cache.result
parent20a2f6c5ee648cd7d1e2b7006419b287e2f93068 (diff)
downloadmariadb-git-ccee4f8483d204a2e4088d1dad283ece22be9a9c.tar.gz
fixed query cache intercommunication with innodb engine
mysql-test/r/innodb_cache.result: new results
Diffstat (limited to 'mysql-test/r/innodb_cache.result')
-rw-r--r--mysql-test/r/innodb_cache.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/innodb_cache.result b/mysql-test/r/innodb_cache.result
index c422dca36f1..7706e60d143 100644
--- a/mysql-test/r/innodb_cache.result
+++ b/mysql-test/r/innodb_cache.result
@@ -10,7 +10,7 @@ a
3
show status like "Qcache_queries_in_cache";
Variable_name Value
-Qcache_queries_in_cache 1
+Qcache_queries_in_cache 0
drop table t1;
commit;
set autocommit=1;
@@ -24,7 +24,7 @@ a
3
show status like "Qcache_queries_in_cache";
Variable_name Value
-Qcache_queries_in_cache 1
+Qcache_queries_in_cache 0
drop table t1;
commit;
create table t1 (a int not null) type=innodb;
@@ -90,14 +90,14 @@ a
2
show status like "Qcache_queries_in_cache";
Variable_name Value
-Qcache_queries_in_cache 3
+Qcache_queries_in_cache 1
show status like "Qcache_hits";
Variable_name Value
Qcache_hits 4
commit;
show status like "Qcache_queries_in_cache";
Variable_name Value
-Qcache_queries_in_cache 3
+Qcache_queries_in_cache 1
drop table if exists t1;
CREATE TABLE t1 (id int(11) NOT NULL auto_increment, PRIMARY KEY (id)) TYPE=InnoDB;
select count(*) from t1;