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:
sasha@mysql.sashanet.com 2001-06-01 17:44:02 -06:00
commit a5057063ae
2 changed files with 12 additions and 0 deletions

View File

@ -1,2 +1,4 @@
n
3
n
345

View File

@ -32,3 +32,13 @@ connection con2;
unlock tables;
connection con1;
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;