1
connect (con1,localhost,root,,);
2
connect (con2,localhost,root,,);
6
drop table if exists t1,t2;
7
drop database if exists mysqltest;
10
create temporary table t1(n int not null primary key);
11
create table t2(n int);
12
insert into t2 values(3);
18
send replace into t1 select n from t2;
31
flush tables with read lock;
41
#test if drop database will wait until we release the global read lock
43
create database mysqltest;
44
create table mysqltest.t1(n int);
45
insert into mysqltest.t1 values (23);
46
flush tables with read lock;
48
send drop database mysqltest;
50
select * from mysqltest.t1;
55
## test if dirty close releases global read lock
57
#create table t1 (n int);
58
#flush tables with read lock;
61
#insert into t1 values (345);
68
# Test of deadlock problem when doing FLUSH TABLE with read lock
69
# (Bug was in NTPL threads in Linux when using different mutex while
70
# waiting for a condtion variable)
72
create table t1 (c1 int);
73
create table t2 (c1 int);
75
connect (con3,localhost,root,,);
80
send flush tables with read lock;
84
send insert into t2 values(1);
96
# It hangs here (insert into t2 does not end).
104
# Bug #33334 mysqltest_embedded crashes when disconnecting before reap
107
connect (con1,localhost,root,,);
108
send select benchmark(200, (select sin(1))) > 1000;
112
--echo End of 5.0 tests