Commit 5a9215a1 authored by Rich Prohaska's avatar Rich Prohaska

#153 change checkpoint lock tests to work with --ps-protocol

parent 12e51e43
SET DEFAULT_STORAGE_ENGINE = 'tokudb'; SET DEFAULT_STORAGE_ENGINE = 'tokudb';
set global tokudb_checkpoint_on_flush_logs=ON; set global tokudb_checkpoint_on_flush_logs=ON;
# Establish connection conn1 (user = root) # Establish connection conn1 (user = root)
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
DB command state info DB command state info
test Sleep NULL test Sleep NULL
test Query executing select DB, command, state, info from information_schema.processlist
flush logs; flush logs;
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
DB command state info DB command state info
test Sleep NULL test Sleep NULL
test Query executing select DB, command, state, info from information_schema.processlist
set tokudb_checkpoint_lock=1; set tokudb_checkpoint_lock=1;
flush logs;; flush logs;;
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
DB command state info DB command state info
test Query executing select DB, command, state, info from information_schema.processlist
test Query NULL flush logs test Query NULL flush logs
set tokudb_checkpoint_lock=0; set tokudb_checkpoint_lock=0;
set global tokudb_checkpoint_on_flush_logs=OFF; set global tokudb_checkpoint_on_flush_logs=OFF;
SET DEFAULT_STORAGE_ENGINE = 'tokudb'; SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root) # Establish connection conn1 (user = root)
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
DB command state info DB command state info
test Sleep NULL test Sleep NULL
test Query executing select DB, command, state, info from information_schema.processlist
flush logs; flush logs;
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
DB command state info DB command state info
test Sleep NULL test Sleep NULL
test Query executing select DB, command, state, info from information_schema.processlist
set tokudb_checkpoint_lock=1; set tokudb_checkpoint_lock=1;
flush logs;; flush logs;;
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
DB command state info DB command state info
test Query executing select DB, command, state, info from information_schema.processlist
test Sleep NULL test Sleep NULL
set tokudb_checkpoint_lock=0; set tokudb_checkpoint_lock=0;
...@@ -8,9 +8,9 @@ connect (conn1,localhost,root,,); ...@@ -8,9 +8,9 @@ connect (conn1,localhost,root,,);
connection default; connection default;
--sleep 2 --sleep 2
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
flush logs; flush logs;
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
connection conn1; connection conn1;
set tokudb_checkpoint_lock=1; set tokudb_checkpoint_lock=1;
...@@ -20,7 +20,7 @@ connection default; ...@@ -20,7 +20,7 @@ connection default;
connection conn1; connection conn1;
--sleep 2 --sleep 2
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
set tokudb_checkpoint_lock=0; set tokudb_checkpoint_lock=0;
connection default; connection default;
......
...@@ -7,9 +7,9 @@ connect (conn1,localhost,root,,); ...@@ -7,9 +7,9 @@ connect (conn1,localhost,root,,);
connection default; connection default;
--sleep 2 --sleep 2
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
flush logs; flush logs;
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
connection conn1; connection conn1;
set tokudb_checkpoint_lock=1; set tokudb_checkpoint_lock=1;
...@@ -19,7 +19,7 @@ connection default; ...@@ -19,7 +19,7 @@ connection default;
connection conn1; connection conn1;
--sleep 2 --sleep 2
select DB, command, state, info from information_schema.processlist; select DB, command, state, info from information_schema.processlist where id != connection_id();
set tokudb_checkpoint_lock=0; set tokudb_checkpoint_lock=0;
connection default; connection default;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment