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

11 lines
397 B
Text

SET DEFAULT_STORAGE_ENGINE = 'tokudb';
DROP TABLE IF EXISTS foo;
set session tokudb_disable_slow_alter=ON;
create table foo (a blob, key (a(3)) clustering=yes)engine=TokuDB;
insert into foo values("");
alter table foo add column b blob;
update foo set b="bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb";
select * from foo;
a b
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
drop table foo;