summaryrefslogtreecommitdiff
path: root/mysql-test/suite/ndb/t/ndb_lock_table.test
blob: 6c21e8e82328e3c0829318ac1278482ac3a1719f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- source include/have_ndb.inc

# BUG 30996
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 (a int) engine ndb;
set autocommit=1;
lock table t1 write;
set autocommit=0;
insert into t1 values (0);
rollback;
select * from t1;
unlock tables;
drop table t1;