1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-27 05:41:41 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result
2016-03-31 10:11:16 +04:00

33 lines
547 B
Plaintext

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;