mariadb/mysql-test/suite/tokudb.bugs/r/checkpoint_lock.result
Zardosht Kasheff 2fe681e29b refs #5955, add/modify test(s)
git-svn-id: file:///svn/mysql/tests/mysql-test@53732 c7de825b-a66e-492c-adef-691d508d4ae1
2013-02-27 21:20:33 +00:00

20 lines
863 B
Text
Executable file

SET DEFAULT_STORAGE_ENGINE = 'tokudb';
set global tokudb_checkpoint_on_flush_logs=ON;
# 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;
set global tokudb_checkpoint_on_flush_logs=OFF;