diff options
author | bell@sanja.is.com.ua <> | 2002-12-11 19:53:57 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-12-11 19:53:57 +0200 |
commit | 3103bca9b2ef17a348c6b38b1ab9e102c27a8983 (patch) | |
tree | f846d1031c9cdf9f90ddacdc9d9dd9a25b14b8f7 /mysql-test | |
parent | b4fcdaa276e94e652daf97a59cedd3ea8f83cd16 (diff) | |
parent | d939f36e47d19c2d3643588eeac33223369cacb2 (diff) | |
download | mariadb-git-3103bca9b2ef17a348c6b38b1ab9e102c27a8983.tar.gz |
merging
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/innodb_cache.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/innodb_cache.result b/mysql-test/r/innodb_cache.result index 47abcb45fe5..7c8c4dafad4 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; |