~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/flush.test

Merge Stewarts cleanup for proto on tinyint

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
select * from t1;
30
30
connection con2;
31
31
flush tables with read lock;
32
 
--error ER_CANT_UPDATE_WITH_READLOCK
 
32
--error 1223
33
33
drop table t2;
34
34
connection con1;
35
35
send drop table t2;
78
78
 
79
79
connection con2;
80
80
send flush tables with read lock;
 
81
--sleep 1
81
82
 
82
83
connection con3;
83
84
send insert into t2 values(1);
 
85
--sleep 1
84
86
 
85
87
connection con1;
86
88
unlock tables;