mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
9e90516b35
git-svn-id: file:///svn/mysql/tests/mysql-test@48570 c7de825b-a66e-492c-adef-691d508d4ae1
12 lines
345 B
Text
12 lines
345 B
Text
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
DROP TABLE IF EXISTS foo;
|
|
set session tokudb_disable_slow_alter=ON;
|
|
create table foo (a int NOT NULL, b int, c int)engine=TokuDB;
|
|
insert into foo values(1,10,100),(2,20,200),(3,30,300);
|
|
alter table foo add column d text;
|
|
select * from foo;
|
|
a b c d
|
|
1 10 100 NULL
|
|
2 20 200 NULL
|
|
3 30 300 NULL
|
|
drop table foo;
|