summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb.alter_table/r/di_dui.result
blob: a440fa78b3586b28d2d7f875c1cb7a1146d03d0d (plain)
1
2
3
4
5
6
SET DEFAULT_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;