mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
542ddfb0f9
git-svn-id: file:///svn/mysql/tests/mysql-test@34244 c7de825b-a66e-492c-adef-691d508d4ae1
18 lines
760 B
Text
Executable file
18 lines
760 B
Text
Executable file
SET STORAGE_ENGINE = 'tokudb';
|
|
# Establish connection conn1 (user = root)
|
|
select DB, command, state, info from information_schema.processlist;
|
|
DB command state info
|
|
test Sleep NULL
|
|
test Query executing select DB, command, state, info from information_schema.processlist
|
|
flush logs;
|
|
select DB, command, state, info from information_schema.processlist;
|
|
DB command state info
|
|
test Sleep NULL
|
|
test Query executing select DB, command, state, info from information_schema.processlist
|
|
set tokudb_checkpoint_lock=1;
|
|
flush logs;;
|
|
select DB, command, state, info from information_schema.processlist;
|
|
DB command state info
|
|
test Query executing select DB, command, state, info from information_schema.processlist
|
|
test Query NULL flush logs
|
|
set tokudb_checkpoint_lock=0;
|