summaryrefslogtreecommitdiff
path: root/mysql-test/r/lock_tables_lost_commit.result
blob: ccf56793f45baae5f82db80dc2eaf9b044e7d86b (plain)
1
2
3
4
5
6
7
8
drop table if exists t1;
create table t1(a int) type=innodb;
lock tables t1 write;
insert into t1 values(10);
select * from t1;
a
10
drop table t1;