mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
30 lines
No EOL
443 B
Text
30 lines
No EOL
443 B
Text
let $engine='tokudb';
|
|
|
|
--disable_warnings
|
|
drop table if exists t;
|
|
--enable_warnings
|
|
|
|
eval create table t (a int primary key) engine=$engine;
|
|
|
|
connect (conn1,localhost,root,,);
|
|
|
|
connection default;
|
|
begin;
|
|
insert into t values (1);
|
|
insert into t values (3);
|
|
|
|
connection conn1;
|
|
begin;
|
|
insert into t values (2);
|
|
insert into t values (4);
|
|
|
|
connection default;
|
|
commit;
|
|
|
|
connection conn1;
|
|
commit;
|
|
|
|
connection default;
|
|
disconnect conn1;
|
|
|
|
drop table t; |