diff options
author | bell@sanja.is.com.ua <> | 2002-03-15 23:57:31 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-03-15 23:57:31 +0200 |
commit | 63b2a551bf10181b0727e9b3f1240e73e5b80158 (patch) | |
tree | 691610fcbd4313eb2d79af0b91394cb2b9410f21 /mysql-test/r/innodb_cache.result | |
parent | 12f1cba0e761b8ea01ee125ce2addccc0ee171f6 (diff) | |
download | mariadb-git-63b2a551bf10181b0727e9b3f1240e73e5b80158.tar.gz |
processing trunsactional tables in query cache
Diffstat (limited to 'mysql-test/r/innodb_cache.result')
-rw-r--r-- | mysql-test/r/innodb_cache.result | 87 |
1 files changed, 86 insertions, 1 deletions
diff --git a/mysql-test/r/innodb_cache.result b/mysql-test/r/innodb_cache.result index df331addb99..eaa030046da 100644 --- a/mysql-test/r/innodb_cache.result +++ b/mysql-test/r/innodb_cache.result @@ -1,4 +1,5 @@ -drop table if exists t1; +drop table if exists t1, t2, t3; +flush status; set autocommit=0; create table t1 (a int not null) type=innodb; insert into t1 values (1),(2),(3); @@ -13,3 +14,87 @@ Qcache_queries_in_cache 0 drop table t1; commit; set autocommit=1; +begin; +create table t1 (a int not null) type=innodb; +insert into t1 values (1),(2),(3); +select * from t1; +a +1 +2 +3 +show status like "Qcache_queries_in_cache"; +Variable_name Value +Qcache_queries_in_cache 0 +drop table t1; +commit; +create table t1 (a int not null) type=innodb; +create table t2 (a int not null) type=innodb; +create table t3 (a int not null) type=innodb; +insert into t1 values (1),(2); +insert into t2 values (1),(2); +insert into t3 values (1),(2); +select * from t1; +a +1 +2 +select * from t2; +a +1 +2 +select * from t3; +a +1 +2 +show status like "Qcache_queries_in_cache"; +Variable_name Value +Qcache_queries_in_cache 3 +show status like "Qcache_hits"; +Variable_name Value +Qcache_hits 0 +begin; +select * from t1; +a +1 +2 +select * from t2; +a +1 +2 +select * from t3; +a +1 +2 +show status like "Qcache_queries_in_cache"; +Variable_name Value +Qcache_queries_in_cache 3 +show status like "Qcache_hits"; +Variable_name Value +Qcache_hits 0 +insert into t1 values (3); +insert into t2 values (3); +insert into t1 values (4); +select * from t1; +a +1 +2 +3 +4 +select * from t2; +a +1 +2 +3 +select * from t3; +a +1 +2 +show status like "Qcache_queries_in_cache"; +Variable_name Value +Qcache_queries_in_cache 3 +show status like "Qcache_hits"; +Variable_name Value +Qcache_hits 0 +commit; +show status like "Qcache_queries_in_cache"; +Variable_name Value +Qcache_queries_in_cache 1 |