EVOLUTION-MANAGER
Edit File: ft-index-40.result
drop table if exists t; connect conn1,localhost,root,,; connection default; create table t (a varchar(50), primary key(a)) engine='tokudb'; insert into t values ("hello world"); select * from t; a hello world begin; connection conn1; select * from t; a hello world connection default; update t set a="HELLO WORLD"; connection conn1; select * from t; a hello world connection default; select * from t; a HELLO WORLD rollback; connection conn1; select * from t; a hello world connection default; connection default; disconnect conn1; drop table t;