summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_add_index/r/hot_create_unique_index.result
blob: ef4fb853d879a008caf4e929ea3b2ed771b25c18 (plain)
1
2
3
4
drop table if exists t;
create table t (id int auto_increment primary key, x int);
create unique index x on t (x);
drop table t;