mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
12 lines
205 B
Text
12 lines
205 B
Text
|
drop table if exists t1;
|
||
|
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;
|
||
|
a
|
||
|
unlock tables;
|
||
|
drop table t1;
|