mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result
2016-04-26 20:56:25 +02:00

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;