summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2003-02-18 16:28:31 +0200
committerbell@sanja.is.com.ua <>2003-02-18 16:28:31 +0200
commit1de8a5996f4b0d89eea2dae6e93046018e963dc3 (patch)
treee04887f1c891d0c36d16e22774a2d7b4bbea66ec /mysql-test
parentaadf481f49e8c58bdc648e0fa2567a6eb8ca5b29 (diff)
parent316097e17bafaa61007611fd809e9d824919dfda (diff)
downloadmariadb-git-1de8a5996f4b0d89eea2dae6e93046018e963dc3.tar.gz
Merge sanja.is.com.ua:/home/bell/mysql/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/work-qc-4.1
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/innodb_cache.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/innodb_cache.result b/mysql-test/r/innodb_cache.result
index 7d351a13e16..04540bebd1a 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 0
+Qcache_queries_in_cache 1
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 0
+Qcache_queries_in_cache 1
drop table t1;
commit;
create table t1 (a int not null) type=innodb;
@@ -97,7 +97,7 @@ Qcache_hits 0
commit;
show status like "Qcache_queries_in_cache";
Variable_name Value
-Qcache_queries_in_cache 1
+Qcache_queries_in_cache 3
drop table if exists t1;
CREATE TABLE t1 (id int(11) NOT NULL auto_increment, PRIMARY KEY (id)) TYPE=InnoDB;
select count(*) from t1;