3
drop table if exists t1;
6
connect (a,localhost,root,,);
7
connect (b,localhost,root,,);
11
# BUG#11238 - in prelocking mode SELECT .. FOR UPDATE is changed to
14
create table t1 (col1 integer primary key, col2 integer) engine=innodb;
15
insert t1 values (1,100);
17
select col2 from t1 where col1=1 for update;
19
send update t1 set col2=0 where col1=1;