mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
16 lines
268 B
Text
16 lines
268 B
Text
|
drop table if exists t1;
|
||
|
create table t1 (a int) engine=innodb;
|
||
|
start transaction with consistent snapshot;
|
||
|
insert into t1 values(1);
|
||
|
select * from t1;
|
||
|
a
|
||
|
commit;
|
||
|
delete from t1;
|
||
|
start transaction;
|
||
|
insert into t1 values(1);
|
||
|
select * from t1;
|
||
|
a
|
||
|
1
|
||
|
commit;
|
||
|
drop table t1;
|