mirror of
https://github.com/MariaDB/server.git
synced 2025-07-18 17:28:14 +02:00
32 lines
547 B
Text
32 lines
547 B
Text
drop table if exists t;
|
|
connect conn1,localhost,root,,;
|
|
connection default;
|
|
create table t (a varchar(50), primary key(a)) engine='tokudb';
|
|
insert into t values ("hello world");
|
|
select * from t;
|
|
a
|
|
hello world
|
|
begin;
|
|
connection conn1;
|
|
select * from t;
|
|
a
|
|
hello world
|
|
connection default;
|
|
update t set a="HELLO WORLD";
|
|
connection conn1;
|
|
select * from t;
|
|
a
|
|
hello world
|
|
connection default;
|
|
select * from t;
|
|
a
|
|
HELLO WORLD
|
|
rollback;
|
|
connection conn1;
|
|
select * from t;
|
|
a
|
|
hello world
|
|
connection default;
|
|
connection default;
|
|
disconnect conn1;
|
|
drop table t;
|