mariadb/mysql-test/suite/tokudb.alter_table/r/di_dui.result

7 lines
223 B
Text
Raw Normal View History

set storage_engine='tokudb';
drop table if exists t;
create table t (a int, b int, c int, primary key(a), key(b), unique key(c));
set session tokudb_disable_slow_alter=1;
alter table t drop key b, drop key c;
drop table t;