summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_alter_table/r/drop_add_pk_part_104.result
blob: 0a66e35f0a794301cbc646f22d96a296b8248c99 (plain)
1
2
3
4
5
set default_storage_engine='tokudb';
drop table if exists t;
create table t (x int, y int, primary key (x)) partition by hash(x) partitions 1;
alter table t drop primary key, add primary key(x);
drop table t;