mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
[t:3006], fix tests to make them deterministic
git-svn-id: file:///svn/mysql/tests/mysql-test@25143 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
7ece30dcff
commit
276b367297
4 changed files with 57 additions and 51 deletions
|
@ -1,18 +1,18 @@
|
|||
SET STORAGE_ENGINE = 'tokudb';
|
||||
# Establish connection conn1 (user = root)
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
23 root localhost:53551 test Query 0 NULL show processlist
|
||||
24 root localhost:53552 test Sleep 0 NULL
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Sleep 0 NULL
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
flush logs;
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
23 root localhost:53551 test Query 0 NULL show processlist
|
||||
24 root localhost:53552 test Sleep 0 NULL
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Sleep 0 NULL
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
set tokudb_checkpoint_lock=1;
|
||||
flush logs;;
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
23 root localhost:53551 test Query 2 NULL flush logs
|
||||
24 root localhost:53552 test Query 0 NULL show processlist
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
test Query 2 NULL flush logs
|
||||
set tokudb_checkpoint_lock=0;
|
||||
|
|
|
@ -1,44 +1,44 @@
|
|||
SET STORAGE_ENGINE = 'tokudb';
|
||||
# Establish connection conn1 (user = root)
|
||||
# should see nothing
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
20 root localhost:53548 test Query 0 NULL show processlist
|
||||
21 root localhost:53549 test Sleep 0 NULL
|
||||
22 root localhost:53550 test Sleep 0 NULL
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Sleep 0 NULL
|
||||
test Sleep 0 NULL
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
flush logs;
|
||||
# should see nothing
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
20 root localhost:53548 test Query 0 NULL show processlist
|
||||
21 root localhost:53549 test Sleep 0 NULL
|
||||
22 root localhost:53550 test Sleep 0 NULL
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Sleep 0 NULL
|
||||
test Sleep 0 NULL
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
set session tokudb_checkpoint_lock=1;
|
||||
flush logs;;
|
||||
# should see a flush logs
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
20 root localhost:53548 test Query 2 NULL flush logs
|
||||
21 root localhost:53549 test Sleep 2 NULL
|
||||
22 root localhost:53550 test Query 0 NULL show processlist
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
test Sleep 2 NULL
|
||||
test Query 2 NULL flush logs
|
||||
set session tokudb_checkpoint_lock=1;
|
||||
# should still see a flush logs
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
20 root localhost:53548 test Query 2 NULL flush logs
|
||||
21 root localhost:53549 test Sleep 2 NULL
|
||||
22 root localhost:53550 test Query 0 NULL show processlist
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
test Sleep 2 NULL
|
||||
test Query 2 NULL flush logs
|
||||
set session tokudb_checkpoint_lock=0;
|
||||
# should still see a flush logs
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
20 root localhost:53548 test Query 4 NULL flush logs
|
||||
21 root localhost:53549 test Query 0 NULL show processlist
|
||||
22 root localhost:53550 test Sleep 2 NULL
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Sleep 2 NULL
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
test Query 4 NULL flush logs
|
||||
set session tokudb_checkpoint_lock=0;
|
||||
# should see nothing
|
||||
show processlist;
|
||||
Id User Host db Command Time State Info
|
||||
20 root localhost:53548 test Sleep 6 NULL
|
||||
21 root localhost:53549 test Sleep 2 NULL
|
||||
22 root localhost:53550 test Query 0 NULL show processlist
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
DB command time state info
|
||||
test Query 0 executing select DB, command, time, state, info from information_schema.processlist
|
||||
test Sleep 2 NULL
|
||||
test Sleep 6 NULL
|
||||
|
|
|
@ -7,9 +7,9 @@ SET STORAGE_ENGINE = 'tokudb';
|
|||
connect (conn1,localhost,root,,);
|
||||
|
||||
connection default;
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
flush logs;
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
|
||||
connection conn1;
|
||||
set tokudb_checkpoint_lock=1;
|
||||
|
@ -19,7 +19,7 @@ connection default;
|
|||
|
||||
connection conn1;
|
||||
--sleep 2
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
set tokudb_checkpoint_lock=0;
|
||||
|
||||
connection default;
|
||||
|
|
|
@ -9,10 +9,12 @@ connect (conn2,localhost,root,,);
|
|||
|
||||
connection default;
|
||||
--echo # should see nothing
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
|
||||
flush logs;
|
||||
--echo # should see nothing
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
|
||||
|
||||
connection conn1;
|
||||
set session tokudb_checkpoint_lock=1;
|
||||
|
@ -23,22 +25,26 @@ connection default;
|
|||
connection conn2;
|
||||
--sleep 2
|
||||
--echo # should see a flush logs
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
|
||||
set session tokudb_checkpoint_lock=1;
|
||||
--echo # should still see a flush logs
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
|
||||
|
||||
connection conn1;
|
||||
--sleep 2
|
||||
set session tokudb_checkpoint_lock=0;
|
||||
--echo # should still see a flush logs
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
|
||||
|
||||
connection conn2;
|
||||
set session tokudb_checkpoint_lock=0;
|
||||
--sleep 2
|
||||
--echo # should see nothing
|
||||
show processlist;
|
||||
select DB, command, time, state, info from information_schema.processlist;
|
||||
|
||||
|
||||
connection default;
|
||||
--reap
|
||||
|
|
Loading…
Reference in a new issue