~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/deadlock.inc

  • Committer: Brian Aker
  • Date: 2010-01-27 18:58:12 UTC
  • Revision ID: brian@gaz-20100127185812-n62n0vwetnx8jrjy
Remove dead code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
commit;
70
70
set autocommit=0;
71
71
select * from t2;
72
 
update t2 set a=100 where b=(SELECT x from t1 where id = b FOR UPDATE);
 
72
select x from t1 where id=0 FOR UPDATE;
 
73
update t2 set a=100 where b=(SELECT x from t1 where id = b);
73
74
select * from t2;
74
75
select * from t1;
75
76