2007-08-17 19:29:08 -06:00
# This test requires that --log-output includes 'table', and the general
# log is on
2006-11-13 20:06:45 +04:00
# embedded server causes different stat
-- source include/not_embedded.inc
2004-10-26 19:30:01 +03:00
# PS causes different statistics
--disable_ps_protocol
2001-10-08 04:58:07 +03:00
2001-03-25 01:02:26 +02:00
connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
2001-01-26 20:00:42 -07:00
2001-01-27 15:33:31 -07:00
flush status;
2007-08-17 19:29:08 -06:00
# Logging to the general query log table (--log-output=table --log) increments
# Table_locks_immediate with each query, so here Immediate becomes 1
2001-01-26 20:00:42 -07:00
show status like 'Table_lock%';
2007-08-17 19:29:08 -06:00
# ++Immediate = 2
2006-09-14 03:37:40 +04:00
select * from information_schema.session_status where variable_name like 'Table_lock%';
2007-08-17 19:29:08 -06:00
2001-01-26 20:00:42 -07:00
connection con1;
2007-08-17 19:29:08 -06:00
# ++Immediate = 3
2001-01-26 20:00:42 -07:00
SET SQL_LOG_BIN=0;
2003-01-06 01:48:59 +02:00
--disable_warnings
2007-08-17 19:29:08 -06:00
# ++Immediate = 4
2001-01-26 20:00:42 -07:00
drop table if exists t1;
2003-01-06 01:48:59 +02:00
--enable_warnings
2007-08-17 19:29:08 -06:00
# ++Immediate = 5
2003-12-10 04:31:42 +00:00
create table t1(n int) engine=myisam;
2007-08-17 19:29:08 -06:00
# Immediate + 2 = 7
2001-01-26 20:00:42 -07:00
insert into t1 values(1);
2007-08-17 19:29:08 -06:00
2001-01-26 20:00:42 -07:00
connection con2;
2007-08-17 19:29:08 -06:00
# Immediate + 2 = 9
2001-01-26 20:00:42 -07:00
lock tables t1 read;
2007-08-17 19:29:08 -06:00
# ++Immediate = 10
2001-01-26 20:00:42 -07:00
unlock tables;
2007-08-17 19:29:08 -06:00
# Immediate + 2 = 12
2001-01-26 20:00:42 -07:00
lock tables t1 read;
2007-08-17 19:29:08 -06:00
2001-01-26 20:00:42 -07:00
connection con1;
2007-08-17 19:29:08 -06:00
# ++Immediate = 13
2007-07-19 15:25:54 -04:00
let $ID= `select connection_id()`;
2007-08-17 19:29:08 -06:00
# ++Immediate = 14 (Not +2, because this increments Table_locks_waited)
2001-02-15 03:43:14 +02:00
--send
update t1 set n = 3;
2007-08-17 19:29:08 -06:00
2001-01-26 20:00:42 -07:00
connection con2;
2007-06-26 21:10:51 -04:00
# wait for the other query to start executing
2007-07-19 15:25:54 -04:00
let $wait_condition= select 1 from INFORMATION_SCHEMA.PROCESSLIST where ID = $ID and STATE = "Locked";
2007-08-17 19:29:08 -06:00
# ++Immediate = 15 + $wait_condition_reps (wait_condition.inc does one select
# in addition to the wait condition)
2007-06-26 21:10:51 -04:00
--source include/wait_condition.inc
2007-08-17 19:29:08 -06:00
# ++Immediate = 16 + $wait_condition_reps
2001-01-26 20:00:42 -07:00
unlock tables;
2007-08-17 19:29:08 -06:00
2001-01-26 20:00:42 -07:00
connection con1;
reap;
2007-08-17 19:29:08 -06:00
# ++Immediate = 17 + $wait_condition_reps
show status like 'Table_locks_waited';
# ++Immediate = 18 + $wait_condition_reps
eval select variable_value - $wait_condition_reps as Immediate from information_schema.session_status where variable_name like 'Table_locks_immediate';
2001-01-27 15:33:31 -07:00
drop table t1;
2005-07-28 03:22:47 +03:00
2006-04-12 17:37:57 +04:00
disconnect con2;
disconnect con1;
connection default;
2005-07-28 03:22:47 +03:00
# End of 4.1 tests
2005-09-06 15:00:35 +05:00
#
2006-04-07 15:30:40 +04:00
# last_query_cost
2005-09-06 15:00:35 +05:00
#
select 1;
show status like 'last_query_cost';
2006-06-20 13:20:32 +03:00
create table t1 (a int);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
select * from t1 where a=6;
show status like 'last_query_cost';
# Ensure value dosn't change by second status call
show status like 'last_query_cost';
select 1;
show status like 'last_query_cost';
drop table t1;
2006-04-07 15:30:40 +04:00
#
# Test for Bug #15933 max_used_connections is wrong after FLUSH STATUS
# if connections are cached
#
#
# The first suggested fix from the bug report was chosen
# (see http://bugs.mysql.com/bug.php?id=15933):
#
# a) On flushing the status, set max_used_connections to
# threads_connected, not to 0.
#
# b) Check if it is necessary to increment max_used_connections when
# taking a thread from the cache as well as when creating new threads
#
2006-04-12 17:37:57 +04:00
# Wait for at most $disconnect_timeout seconds for disconnects to finish.
let $disconnect_timeout = 10;
2006-04-07 15:30:40 +04:00
2006-04-12 17:37:57 +04:00
# Wait for any previous disconnects to finish.
2006-04-07 15:30:40 +04:00
FLUSH STATUS;
2006-04-12 17:37:57 +04:00
--disable_query_log
--disable_result_log
eval SET @wait_left = $disconnect_timeout;
let $max_used_connections = `SHOW STATUS LIKE 'max_used_connections'`;
eval SET @max_used_connections = SUBSTRING('$max_used_connections', 21)+0;
let $wait_more = `SELECT @max_used_connections != 1 && @wait_left > 0`;
while ($wait_more)
{
sleep 1;
FLUSH STATUS;
SET @wait_left = @wait_left - 1;
let $max_used_connections = `SHOW STATUS LIKE 'max_used_connections'`;
eval SET @max_used_connections = SUBSTRING('$max_used_connections', 21)+0;
let $wait_more = `SELECT @max_used_connections != 1 && @wait_left > 0`;
}
--enable_query_log
--enable_result_log
# Prerequisite.
2006-04-07 15:30:40 +04:00
SHOW STATUS LIKE 'max_used_connections';
2006-09-14 03:37:40 +04:00
SELECT * FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME LIKE 'max_used_connections';
2006-04-07 15:30:40 +04:00
# Save original setting.
SET @save_thread_cache_size=@@thread_cache_size;
SET GLOBAL thread_cache_size=3;
2006-04-12 17:37:57 +04:00
connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
2006-04-07 15:30:40 +04:00
2006-04-12 17:37:57 +04:00
connection con1;
disconnect con2;
2006-04-07 15:30:40 +04:00
# Check that max_used_connections still reflects maximum value.
SHOW STATUS LIKE 'max_used_connections';
2006-09-14 03:37:40 +04:00
SELECT * FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME LIKE 'max_used_connections';
2006-04-07 15:30:40 +04:00
# Check that after flush max_used_connections equals to current number
2006-04-12 17:37:57 +04:00
# of connections. First wait for previous disconnect to finish.
2006-04-07 15:30:40 +04:00
FLUSH STATUS;
2006-04-12 17:37:57 +04:00
--disable_query_log
--disable_result_log
eval SET @wait_left = $disconnect_timeout;
let $max_used_connections = `SHOW STATUS LIKE 'max_used_connections'`;
eval SET @max_used_connections = SUBSTRING('$max_used_connections', 21)+0;
let $wait_more = `SELECT @max_used_connections != 2 && @wait_left > 0`;
while ($wait_more)
{
sleep 1;
FLUSH STATUS;
SET @wait_left = @wait_left - 1;
let $max_used_connections = `SHOW STATUS LIKE 'max_used_connections'`;
eval SET @max_used_connections = SUBSTRING('$max_used_connections', 21)+0;
let $wait_more = `SELECT @max_used_connections != 2 && @wait_left > 0`;
}
--enable_query_log
--enable_result_log
# Check that we don't count disconnected thread any longer.
2006-04-07 15:30:40 +04:00
SHOW STATUS LIKE 'max_used_connections';
2006-09-14 03:37:40 +04:00
SELECT * FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME LIKE 'max_used_connections';
2006-04-07 15:30:40 +04:00
# Check that max_used_connections is updated when cached thread is
# reused...
2006-04-12 17:37:57 +04:00
connect (con2,localhost,root,,);
2006-04-07 15:30:40 +04:00
SHOW STATUS LIKE 'max_used_connections';
2006-09-14 03:37:40 +04:00
SELECT * FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME LIKE 'max_used_connections';
2006-04-07 15:30:40 +04:00
# ...and when new thread is created.
2006-04-12 17:37:57 +04:00
connect (con3,localhost,root,,);
2006-04-07 15:30:40 +04:00
SHOW STATUS LIKE 'max_used_connections';
2006-09-14 03:37:40 +04:00
SELECT * FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME LIKE 'max_used_connections';
2006-04-07 15:30:40 +04:00
# Restore original setting.
connection default;
SET GLOBAL thread_cache_size=@save_thread_cache_size;
disconnect con3;
disconnect con2;
disconnect con1;
# End of 5.0 tests
2006-06-20 13:20:32 +03:00
#
# Ensure that SHOW STATUS only changes global status variables
#
connect (con1,localhost,root,,);
let $rnd_next = `show global status like 'handler_read_rnd_next'`;
let $tmp_table = `show global status like 'Created_tmp_tables'`;
show status like 'com_show_status';
show status like 'hand%write%';
show status like '%tmp%';
show status like 'hand%write%';
show status like '%tmp%';
show status like 'com_show_status';
let $rnd_next2 = `show global status like 'handler_read_rnd_next'`;
let $tmp_table2 = `show global status like 'Created_tmp_tables'`;
--disable_query_log
eval select substring_index('$rnd_next2',0x9,-1)-substring_index('$rnd_next',0x9,-1) as rnd_diff, substring_index('$tmp_table2',0x9,-1)-substring_index('$tmp_table',0x9,-1) as tmp_table_diff;
--enable_query_log
# End of 5.1 tests