mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
21 lines
321 B
Text
21 lines
321 B
Text
|
SET STORAGE_ENGINE = 'tokudb';
|
||
|
DROP TABLE IF EXISTS foo;
|
||
|
set session transaction isolation level read uncommitted;
|
||
|
create table foo (a int) engine=TokuDB;
|
||
|
insert into foo values (1),(2),(3);
|
||
|
select * from foo;
|
||
|
a
|
||
|
1
|
||
|
2
|
||
|
3
|
||
|
update foo set a=a+1;
|
||
|
select * from foo;
|
||
|
a
|
||
|
2
|
||
|
3
|
||
|
4
|
||
|
delete from foo;
|
||
|
select * from foo;
|
||
|
a
|
||
|
DROP TABLE foo;
|