~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/flush_block_commit.test

  • Committer: patrick crews
  • Date: 2010-09-29 15:15:19 UTC
  • mfrom: (1099.4.188 drizzle)
  • Revision ID: gleebix@gmail.com-20100929151519-6mrmzd1ciw2p9nws
Tags: 2010.09.1802
Update translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
connection con2;
41
41
begin;
42
42
send select * from t1 for update; # blocked by con1
43
 
sleep 0.5;
 
43
sleep 0.1;
44
44
connection con3;
45
45
send flush tables with read lock; # blocked by con2
46
46
connection con1;
71
71
begin;
72
72
select * from t1;
73
73
show create database test;
74
 
COMMIT;
 
74
 
75
75
drop table t1;
76
76
 
77
77
# End of 4.1 tests