EVOLUTION-MANAGER
Edit File: locks-delete-deadlock-1.result
SET DEFAULT_STORAGE_ENGINE='tokudb'; drop table if exists t; connect conn1,localhost,root; connection default; create table t (a int primary key, b int); insert into t values (1,0),(2,1),(3,0); begin; delete from t where b>0; connection conn1; set transaction isolation level serializable; select * from t where a!=2; connection default; commit; connection conn1; a b 1 0 3 0 connection default; disconnect conn1; drop table t;