Merge mysql.sashanet.com:/home/sasha/src/bk/mysql
into mysql.sashanet.com:/home/sasha/src/bk/mysql-4.0
This commit is contained in:
commit
a5057063ae
@ -1,2 +1,4 @@
|
|||||||
n
|
n
|
||||||
3
|
3
|
||||||
|
n
|
||||||
|
345
|
||||||
|
@ -32,3 +32,13 @@ connection con2;
|
|||||||
unlock tables;
|
unlock tables;
|
||||||
connection con1;
|
connection con1;
|
||||||
reap;
|
reap;
|
||||||
|
|
||||||
|
# test if dirty close releases global read lock
|
||||||
|
connection con1;
|
||||||
|
create table t1 (n int);
|
||||||
|
flush tables with read lock;
|
||||||
|
dirty_close con1;
|
||||||
|
connection con2;
|
||||||
|
insert into t1 values (345);
|
||||||
|
select * from t1;
|
||||||
|
drop table t1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user