2001-12-13 01:31:19 +01:00
|
|
|
-- source include/have_innodb.inc
|
|
|
|
|
|
|
|
#
|
|
|
|
# Without auto_commit.
|
|
|
|
#
|
2002-03-15 22:57:31 +01:00
|
|
|
drop table if exists t1, t2, t3;
|
|
|
|
flush status;
|
2001-12-13 01:31:19 +01:00
|
|
|
set autocommit=0;
|
|
|
|
create table t1 (a int not null) type=innodb;
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
select * from t1;
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
drop table t1;
|
|
|
|
commit;
|
|
|
|
set autocommit=1;
|
2002-03-15 22:57:31 +01:00
|
|
|
begin;
|
|
|
|
create table t1 (a int not null) type=innodb;
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
select * from t1;
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
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;
|
|
|
|
select * from t2;
|
|
|
|
select * from t3;
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
begin;
|
|
|
|
select * from t1;
|
|
|
|
select * from t2;
|
|
|
|
select * from t3;
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
insert into t1 values (3);
|
|
|
|
insert into t2 values (3);
|
|
|
|
insert into t1 values (4);
|
|
|
|
select * from t1;
|
|
|
|
select * from t2;
|
|
|
|
select * from t3;
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
commit;
|
|
|
|
show status like "Qcache_queries_in_cache";
|