mirror of
https://github.com/MariaDB/server.git
synced 2025-04-21 22:55:35 +02:00
14 lines
273 B
Text
14 lines
273 B
Text
create table t_toku (pk int primary key) engine=TokuDB;
|
|
begin;
|
|
insert into t_toku values (1),(2);
|
|
savepoint sp1;
|
|
insert into t_toku values (3);
|
|
savepoint sp2;
|
|
insert into t_toku values (4);
|
|
rollback to savepoint sp1;
|
|
commit;
|
|
select * from t_toku;
|
|
pk
|
|
1
|
|
2
|
|
drop table t_toku;
|