diff options
author | unknown <bell@sanja.is.com.ua> | 2003-09-15 10:35:52 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-09-15 10:35:52 +0300 |
commit | 15bde938b13ff733b3d01da508a69d3d99294334 (patch) | |
tree | 840a1020ff7ce00c12d2dbe3bdce7148eae6222f /mysql-test | |
parent | bf6480ba7c726a48eab443559f14a8014c9e6ec9 (diff) | |
parent | 9ffa550e070ee626b7ea189989f0f48ee97faf29 (diff) | |
download | mariadb-git-15bde938b13ff733b3d01da508a69d3d99294334.tar.gz |
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-qc-4.1
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/innodb_cache.result | 8 |
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; |