mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / innodb / t / innodb_bug53674.test
blob47f67f109c315da80278be2c339b380a58294691
1 -- source include/have_innodb.inc
3 create table bug53674(a int)engine=innodb;
4 insert into bug53674 values (1),(2);
5 start transaction;
6 select * from bug53674 for update;
7 select * from bug53674 where a=(select a from bug53674 where a > 1);
8 drop table bug53674;