1
# Let's see if FLUSH TABLES WITH READ LOCK blocks COMMIT of existing
3
# We verify that we did not introduce a deadlock.
4
# This is intended to mimick how mysqldump and innobackup work.
6
# And it requires InnoDB
8
connect (con1,localhost,root,,);
9
connect (con2,localhost,root,,);
10
connect (con3,localhost,root,,);
14
drop table if exists t1;
16
create table t1 (a int) engine=innodb;
21
insert into t1 values(1);
23
flush tables with read lock;
26
send commit; # blocked by con2
29
select * from t1; # verify con1 was blocked and data did not move
38
select * from t1 for update;
41
send select * from t1 for update; # blocked by con1
44
send flush tables with read lock; # blocked by con2
46
commit; # should not be blocked by con3
53
# BUG#6732 FLUSH TABLES WITH READ LOCK + COMMIT hangs later FLUSH TABLES
57
commit; # unlock InnoDB row locks to allow insertions
60
insert into t1 values(10);
61
flush tables with read lock;
65
flush tables with read lock; # bug caused hang here
68
# BUG#7358 SHOW CREATE DATABASE fails if open transaction
72
show create database test;