adding tests
This commit is contained in:
parent
3437cf44c4
commit
227f1de193
11
localtests/fail-float-unique-key/create.sql
Normal file
11
localtests/fail-float-unique-key/create.sql
Normal 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;
|
1
localtests/fail-float-unique-key/expect_failure
Normal file
1
localtests/fail-float-unique-key/expect_failure
Normal file
@ -0,0 +1 @@
|
||||
No shared unique key can be found
|
1
localtests/fail-float-unique-key/extra_args
Normal file
1
localtests/fail-float-unique-key/extra_args
Normal file
@ -0,0 +1 @@
|
||||
--alter="add column v varchar(32)"
|
Loading…
Reference in New Issue
Block a user