adding tests

This commit is contained in:
Shlomi Noach 2017-09-05 06:34:26 +03:00
parent 3437cf44c4
commit 227f1de193
3 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,11 @@
drop table if exists gh_ost_test;
create table gh_ost_test (
f float,
i int not null,
ts timestamp default current_timestamp,
dt datetime,
key i_idx(i),
unique key f_uidx(f)
) auto_increment=1;
drop event if exists gh_ost_test;

View File

@ -0,0 +1 @@
No shared unique key can be found

View File

@ -0,0 +1 @@
--alter="add column v varchar(32)"