mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
11 lines
397 B
Text
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;
|