mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
2fe681e29b
git-svn-id: file:///svn/mysql/tests/mysql-test@53732 c7de825b-a66e-492c-adef-691d508d4ae1
46 lines
1.8 KiB
Text
Executable file
46 lines
1.8 KiB
Text
Executable file
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
set GLOBAL tokudb_checkpoint_on_flush_logs=ON;
|
|
# Establish connection conn1 (user = root)
|
|
# should see nothing
|
|
select DB, command, state, info from information_schema.processlist;
|
|
DB command state info
|
|
test Sleep NULL
|
|
test Sleep NULL
|
|
test Query executing select DB, command, state, info from information_schema.processlist
|
|
flush logs;
|
|
# should see nothing
|
|
select DB, command, state, info from information_schema.processlist;
|
|
DB command state info
|
|
test Sleep NULL
|
|
test Sleep NULL
|
|
test Query executing select DB, command, state, info from information_schema.processlist
|
|
set session tokudb_checkpoint_lock=1;
|
|
flush logs;;
|
|
# should see a 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 Sleep NULL
|
|
test Query NULL flush logs
|
|
set session tokudb_checkpoint_lock=1;
|
|
# should still see a 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 Sleep NULL
|
|
test Query NULL flush logs
|
|
set session tokudb_checkpoint_lock=0;
|
|
# should still see a 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
|
|
test Query NULL flush logs
|
|
set session tokudb_checkpoint_lock=0;
|
|
# should see nothing
|
|
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 Sleep NULL
|
|
test Sleep NULL
|
|
set GLOBAL tokudb_checkpoint_on_flush_logs=OFF;
|