Skip to content

Commit 6e0b4c6

Browse files
author
Shlomi Noach
committed
Adding keywork-column tests
1 parent 83416fb commit 6e0b4c6

4 files changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
drop table if exists gh_ost_test;
2+
create table gh_ost_test (
3+
id int auto_increment,
4+
i int not null,
5+
color varchar(32),
6+
primary key(id)
7+
) auto_increment=1;
8+
9+
drop event if exists gh_ost_test;
10+
11+
insert into gh_ost_test values (null, 11, 'red');
12+
insert into gh_ost_test values (null, 13, 'green');
13+
insert into gh_ost_test values (null, 17, 'blue');
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--alter='add column `index` int unsigned' \
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
id, i, color
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
id, i, color

0 commit comments

Comments
 (0)