summaryrefslogtreecommitdiff
path: root/mysql-test/r/flush_block_commit.result
blob: 17991f153823a1087a5dbdf282b4aff2c85e7a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
drop table if exists t1;
create table t1 (a int) engine=innodb;
begin;
insert into t1 values(1);
flush tables with read lock;
select * from t1;
a
 commit;
select * from t1;
a
unlock tables;
begin;
select * from t1 for update;
a
1
begin;
 select * from t1 for update;
 flush tables with read lock;
commit;
a
1
unlock tables;
drop table t1;