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