EVOLUTION-MANAGER
Edit File: locking-read-repeatable-read-2.result
create table t (a int primary key, b int) ENGINE=TokuDB; insert into t values (1,0); insert into t values (2,1); insert into t values (3,2); set session transaction isolation level repeatable read; begin; select * from t lock in share mode; a b 1 0 2 1 3 2 connect conn1,localhost,root; set session transaction isolation level repeatable read; begin; update t set b=b+1 where a=2; ERROR HY000: Lock wait timeout exceeded; try restarting transaction connection default; commit; disconnect conn1; drop table t;