# ensure that we can add a key and a unique key simultaneously --source include/have_tokudb.inc set default_storage_engine='tokudb'; --disable_warnings drop table if exists t; --enable_warnings create table t (a int primary key, b int, c int); set session tokudb_disable_slow_alter=1; alter table t add key(b), add unique key(c); drop table t;