~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/include/unsafe_binlog.inc

Merged from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
INSERT INTO t2 VALUES (1, 0, '');
35
35
INSERT INTO t2 VALUES (8, 1, '');
36
36
commit;
 
37
DELETE ml.* FROM t1 AS ml LEFT JOIN t2 AS mm ON (mm.id=ml.id)
 
38
WHERE mm.id IS NULL;
37
39
select ml.* from t1 as ml left join t2 as mm on (mm.id=ml.id)
38
40
where mm.id is null lock in share mode;
39
41
drop table t1,t2;