mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
4aa09193ea
git-svn-id: file:///svn/mysql/tests/mysql-test@25143 c7de825b-a66e-492c-adef-691d508d4ae1
44 lines
1.8 KiB
Text
Executable file
44 lines
1.8 KiB
Text
Executable file
SET STORAGE_ENGINE = 'tokudb';
|
|
# Establish connection conn1 (user = root)
|
|
# should see nothing
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|