~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/deadlock_innodb.result

  • Committer: Brian Aker
  • Date: 2008-07-05 17:02:05 UTC
  • Revision ID: brian@tangent.org-20080705170205-ezff9is4e7hpa3x2
Conversion of handler type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
0       10
38
38
1       20
39
39
2       30
40
 
select x from t1 where id=0 FOR UPDATE;
41
 
x
42
 
0
43
 
update t2 set a=100 where b=(SELECT x from t1 where id = b);
 
40
update t2 set a=100 where b=(SELECT x from t1 where id = b FOR UPDATE);
44
41
select * from t2;
45
42
b       a
46
43
0       100