gh-ost/localtests/fail-no-unique-key/create.sql
2017-09-03 09:57:24 +03:00

10 lines
206 B
SQL

drop table if exists gh_ost_test;
create table gh_ost_test (
i int not null,
ts timestamp default current_timestamp,
dt datetime,
key i_idx(i)
) auto_increment=1;
drop event if exists gh_ost_test;