2001-12-06 00:05:30 +01:00
|
|
|
|
#
|
|
|
|
|
# Tests with query cache
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Reset query cache variables.
|
|
|
|
|
|
2001-12-13 01:31:19 +01:00
|
|
|
|
flush query cache; # This crashed in some versions
|
|
|
|
|
flush query cache; # This crashed in some versions
|
2001-12-06 00:05:30 +01:00
|
|
|
|
reset query cache;
|
|
|
|
|
flush status;
|
2001-12-23 01:43:46 +01:00
|
|
|
|
drop table if exists t1,t2,t3,t11,t21, mysqltest.t1;
|
2001-12-09 23:08:24 +01:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# First simple test
|
|
|
|
|
#
|
|
|
|
|
|
2001-12-06 00:05:30 +01:00
|
|
|
|
create table t1 (a int not null);
|
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
|
select * from t1;
|
|
|
|
|
select * from t1;
|
|
|
|
|
select sql_no_cache * from t1;
|
|
|
|
|
select length(now()) from t1;
|
|
|
|
|
|
|
|
|
|
# Only check the variables that are independent of the machine and startup
|
|
|
|
|
# options
|
|
|
|
|
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
show status like "Qcache_inserts";
|
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
|
|
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
2001-12-09 23:08:24 +01:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# MERGE TABLES with INSERT/UPDATE and DELETE
|
|
|
|
|
#
|
|
|
|
|
create table t1 (a int not null);
|
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
|
create table t2 (a int not null);
|
|
|
|
|
insert into t2 values (4),(5),(6);
|
|
|
|
|
create table t3 (a int not null) type=MERGE UNION=(t1,t2) INSERT_METHOD=FIRST;
|
|
|
|
|
# insert
|
|
|
|
|
select * from t3;
|
|
|
|
|
select * from t3;
|
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
insert into t2 values (7);
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
select * from t1;
|
|
|
|
|
select * from t1;
|
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
insert into t3 values (8);
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
# update
|
|
|
|
|
select * from t3;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
update t2 set a=9 where a=7;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
select * from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
update t3 set a=10 where a=1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
#delete
|
|
|
|
|
select * from t3;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
delete from t2 where a=9;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
select * from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
delete from t3 where a=10;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
drop table t1, t2, t3;
|
|
|
|
|
#
|
|
|
|
|
# FLUSH QUERY CACHE
|
|
|
|
|
#
|
|
|
|
|
create table t1 (a int not null);
|
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
|
create table t2 (a int not null);
|
|
|
|
|
insert into t2 values (1),(2),(3);
|
|
|
|
|
select * from t1;
|
|
|
|
|
select * from t2;
|
|
|
|
|
insert into t1 values (4);
|
|
|
|
|
show status like "Qcache_free_blocks";
|
|
|
|
|
flush query cache;
|
|
|
|
|
show status like "Qcache_free_blocks";
|
|
|
|
|
drop table t1, t2;
|
2001-12-14 15:02:41 +01:00
|
|
|
|
# With join results...
|
|
|
|
|
create table t1 (a text not null);
|
|
|
|
|
create table t11 (a text not null);
|
|
|
|
|
create table t2 (a text not null);
|
|
|
|
|
create table t21 (a text not null);
|
|
|
|
|
create table t3 (a text not null);
|
|
|
|
|
insert into t1 values("1111111111111111111111111111111111111111111111111111");
|
|
|
|
|
insert into t11 select * from t1;
|
|
|
|
|
insert into t21 select * from t1;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
#results of t3 must be > 0.5Mb
|
|
|
|
|
insert into t3 select * from t1;
|
|
|
|
|
insert into t3 select * from t2;
|
|
|
|
|
insert into t3 select * from t1;
|
|
|
|
|
disable_result_log;
|
|
|
|
|
select * from t11;
|
|
|
|
|
select * from t21;
|
|
|
|
|
enable_result_log;
|
|
|
|
|
show status like "Qcache_total_blocks";
|
|
|
|
|
show status like "Qcache_free_blocks";
|
|
|
|
|
disable_result_log;
|
|
|
|
|
insert into t11 values("");
|
|
|
|
|
select * from t3;
|
|
|
|
|
enable_result_log;
|
|
|
|
|
show status like "Qcache_total_blocks";
|
|
|
|
|
show status like "Qcache_free_blocks";
|
|
|
|
|
flush query cache;
|
|
|
|
|
show status like "Qcache_total_blocks";
|
|
|
|
|
show status like "Qcache_free_blocks";
|
|
|
|
|
drop table t1, t2, t3, t11, t21;
|
2001-12-09 23:08:24 +01:00
|
|
|
|
#
|
|
|
|
|
# SELECT SQL_CACHE ...
|
|
|
|
|
#
|
|
|
|
|
set sql_query_cache_type=demand;
|
|
|
|
|
create table t1 (a int not null);
|
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
|
select * from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
select sql_cache * from t1;
|
|
|
|
|
set sql_query_cache_type=2;
|
|
|
|
|
select sql_cache * from t1;
|
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
set sql_query_cache_type=on;
|
|
|
|
|
#
|
|
|
|
|
# RESET QUERY CACHE
|
|
|
|
|
#
|
|
|
|
|
reset query cache;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
#
|
|
|
|
|
# SELECT SQL_NO_CACHE
|
|
|
|
|
#
|
|
|
|
|
select sql_no_cache * from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
drop table t1;
|
|
|
|
|
#
|
|
|
|
|
# Check that queries that uses NOW(), LAST_INSERT_ID()... are not cached.
|
|
|
|
|
#
|
|
|
|
|
create table t1 (a text not null);
|
|
|
|
|
select CONNECTION_ID() from t1;
|
|
|
|
|
#GET_LOCK
|
|
|
|
|
#RELEASE_LOCK
|
|
|
|
|
#LOAD_FILE
|
|
|
|
|
select FOUND_ROWS();
|
|
|
|
|
select NOW() from t1;
|
|
|
|
|
select CURDATE() from t1;
|
|
|
|
|
select CURTIME() from t1;
|
|
|
|
|
select DATABASE() from t1;
|
|
|
|
|
select ENCRYPT("test") from t1;
|
|
|
|
|
select LAST_INSERT_ID() from t1;
|
|
|
|
|
select RAND() from t1;
|
|
|
|
|
select UNIX_TIMESTAMP() from t1;
|
|
|
|
|
select USER() from t1;
|
|
|
|
|
select benchmark(1,1) from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
#
|
|
|
|
|
# Tests when the cache is filled
|
|
|
|
|
#
|
|
|
|
|
create table t2 (a text not null);
|
|
|
|
|
insert into t1 values("1111111111111111111111111111111111111111111111111111");
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2; # 2
|
|
|
|
|
insert into t2 select * from t1; # 3
|
|
|
|
|
insert into t1 select * from t2; # 5
|
|
|
|
|
insert into t2 select * from t1; # 8
|
|
|
|
|
insert into t1 select * from t2; # 13
|
|
|
|
|
insert into t2 select * from t1; # 21
|
|
|
|
|
insert into t1 select * from t2; # 34
|
|
|
|
|
insert into t2 select * from t1; # 55
|
|
|
|
|
insert into t1 select * from t2; # 89
|
|
|
|
|
insert into t2 select * from t1; # 144
|
|
|
|
|
insert into t1 select * from t2; # 233
|
|
|
|
|
insert into t2 select * from t1; # 357
|
|
|
|
|
insert into t1 select * from t2; # 610
|
|
|
|
|
insert into t2 select * from t1; # 987
|
|
|
|
|
insert into t1 select * from t2; # 1597
|
|
|
|
|
insert into t2 select * from t1; # 2584
|
|
|
|
|
insert into t1 select * from t2; # 4181
|
|
|
|
|
|
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
|
disable_result_log;
|
|
|
|
|
select a as a1, a as a2 from t1;
|
|
|
|
|
select a as a2, a as a3 from t1;
|
|
|
|
|
select a as a3, a as a4 from t1;
|
|
|
|
|
# next query must be out of 1Mb cache
|
|
|
|
|
select a as a1, a as a2 from t1;
|
|
|
|
|
enable_result_log;
|
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
reset query cache;
|
2001-12-14 15:02:41 +01:00
|
|
|
|
#
|
|
|
|
|
# Query bigger then query_cache_limit
|
|
|
|
|
#
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
insert into t2 select * from t1;
|
|
|
|
|
insert into t1 select * from t2;
|
|
|
|
|
disable_result_log;
|
|
|
|
|
select * from t1;
|
|
|
|
|
enable_result_log;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
drop table t1,t2;
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# noncachable ODBC work around (and prepare cache for drop database)
|
|
|
|
|
#
|
2001-12-23 01:43:46 +01:00
|
|
|
|
create database if not exists mysqltest;
|
2001-12-22 14:13:31 +01:00
|
|
|
|
create table mysqltest.t1 (i int not null auto_increment, a int, primary key (i));
|
|
|
|
|
insert into mysqltest.t1 (a) values (1);
|
|
|
|
|
select * from mysqltest.t1 where i is null;
|
2001-12-14 15:02:41 +01:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# drop db
|
|
|
|
|
#
|
2001-12-22 14:13:31 +01:00
|
|
|
|
select * from mysqltest.t1;
|
2001-12-14 15:02:41 +01:00
|
|
|
|
show status like "Qcache_queries_in_cache";
|
2001-12-22 14:13:31 +01:00
|
|
|
|
drop database mysqltest;
|
2001-12-14 15:02:41 +01:00
|
|
|
|
show status like "Qcache_queries_in_cache";
|
2001-12-20 05:14:11 +01:00
|
|
|
|
|
2001-12-14 15:02:41 +01:00
|
|
|
|
#
|
|
|
|
|
# Charset convertion (cp1251_koi8 always present)
|
|
|
|
|
#
|
|
|
|
|
create table t1 (a char(1) not null);
|
|
|
|
|
insert into t1 values("<22>");
|
|
|
|
|
select * from t1;
|
|
|
|
|
set CHARACTER SET cp1251_koi8;
|
|
|
|
|
select * from t1;
|
|
|
|
|
set CHARACTER SET DEFAULT;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
2001-12-23 01:43:46 +01:00
|
|
|
|
show status like "Qcache_hits";
|
2001-12-09 23:08:24 +01:00
|
|
|
|
drop table t1;
|
2001-12-10 17:16:51 +01:00
|
|
|
|
|
|
|
|
|
# The following tests can't be done as the values differen on 32 and 64 bit
|
|
|
|
|
# machines :(
|
|
|
|
|
#show variables like "query_cache_size";
|
|
|
|
|
#show status like "Qcache_free_memory";
|
2001-12-20 05:14:11 +01:00
|
|
|
|
|
2001-12-23 01:43:46 +01:00
|
|
|
|
#
|
|
|
|
|
# same tables in different db
|
|
|
|
|
#
|
|
|
|
|
create database if not exists mysqltest;
|
|
|
|
|
create table mysqltest.t1 (i int not null);
|
|
|
|
|
create table t1 (i int not null);
|
|
|
|
|
insert into mysqltest.t1 (i) values (1);
|
|
|
|
|
insert into t1 (i) values (2);
|
|
|
|
|
|
|
|
|
|
select * from t1;
|
|
|
|
|
use mysqltest;
|
|
|
|
|
select * from t1;
|
|
|
|
|
select * from t1;
|
|
|
|
|
use test;
|
|
|
|
|
select * from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
show status like "Qcache_hits";
|
|
|
|
|
|
|
|
|
|
drop database mysqltest;
|
|
|
|
|
drop table t1;
|
|
|
|
|
|
2001-12-20 05:14:11 +01:00
|
|
|
|
#
|
|
|
|
|
# Test insert delayed
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
flush query cache;
|
|
|
|
|
reset query cache;
|
|
|
|
|
|
|
|
|
|
create table t1 (a int not null);
|
|
|
|
|
insert into t1 values (1),(2),(3);
|
|
|
|
|
select * from t1;
|
|
|
|
|
select * from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
insert delayed into t1 values (4);
|
|
|
|
|
--sleep 5 # Wait for insert delayed to be executed.
|
|
|
|
|
select a from t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|
|
|
|
|
drop table t1;
|
|
|
|
|
show status like "Qcache_queries_in_cache";
|