mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
35 lines
676 B
Text
35 lines
676 B
Text
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
DROP TABLE IF EXISTS toku1, toku2;
|
|
create table toku1 (a int) engine=TokuDB;
|
|
create table toku2 (a int) engine=TokuDB;
|
|
insert into toku1 values (1),(2),(3);
|
|
insert into toku2 values (1),(2),(3);
|
|
connect conn1,localhost,root,,;
|
|
connection default;
|
|
set session transaction isolation level READ COMMITTED;
|
|
begin;
|
|
insert into toku2 select * from toku1;
|
|
connection conn1;
|
|
set session transaction isolation level READ COMMITTED;
|
|
insert into toku1 values (4);
|
|
connection default;
|
|
commit;
|
|
select * from toku2;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
1
|
|
2
|
|
3
|
|
connection conn1;
|
|
commit;
|
|
select * from toku1;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
4
|
|
connection default;
|
|
disconnect conn1;
|
|
DROP TABLE toku1, toku2;
|