mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
26a983a249
git-svn-id: file:///svn/mysql/tests/mysql-test@48713 c7de825b-a66e-492c-adef-691d508d4ae1
10 lines
No EOL
269 B
Text
10 lines
No EOL
269 B
Text
--source include/have_tokudb.inc
|
|
--disable_warnings
|
|
drop table if exists t;
|
|
--enable_warnings
|
|
set default_storage_engine='tokudb';
|
|
set tokudb_disable_slow_alter=1;
|
|
|
|
create table t (a enum ('a','b','c'));
|
|
alter table t change column a aa enum('a','b','c');
|
|
drop table t; |