1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result
2013-11-19 15:35:31 +01:00

23 lines
342 B
Plaintext

drop table if exists t;
create table t (a varchar(50), primary key(a)) engine='tokudb';
insert into t values ("hello world");
select * from t;
a
hello world
begin;
select * from t;
a
hello world
update t set a="HELLO WORLD";
select * from t;
a
hello world
select * from t;
a
HELLO WORLD
rollback;
select * from t;
a
hello world
drop table t;