Skip to content

Commit 227f1de

Browse files
author
Shlomi Noach
committed
adding tests
1 parent 3437cf4 commit 227f1de

3 files changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
drop table if exists gh_ost_test;
2+
create table gh_ost_test (
3+
f float,
4+
i int not null,
5+
ts timestamp default current_timestamp,
6+
dt datetime,
7+
key i_idx(i),
8+
unique key f_uidx(f)
9+
) auto_increment=1;
10+
11+
drop event if exists gh_ost_test;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
No shared unique key can be found
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--alter="add column v varchar(32)"

0 commit comments

Comments
 (0)