complicating the test

This commit is contained in:
Shlomi Noach 2017-01-10 09:13:05 +02:00
parent 5ba98a627c
commit 1921b0f9df
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ create table gh_ost_test (
column2 smallint(5) unsigned NOT NULL,
column3 mediumint(8) unsigned NOT NULL,
column4 tinyint(3) unsigned NOT NULL,
column5 int(11) NOT NULL,
column6 int(11) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY c12_uix (column1, column2)

View File

@ -1 +1 @@
--alter="ADD UNIQUE INDEX (id), DROP INDEX c12_uix, DROP PRIMARY KEY,ADD PRIMARY KEY(column1,column2),MODIFY column2 SMALLINT UNSIGNED NOT NULL, MODIFY column3 INT NOT NULL"
--alter="ADD UNIQUE INDEX (id), DROP COLUMN column5, DROP INDEX c12_uix, DROP PRIMARY KEY,ADD PRIMARY KEY(column1,column2),MODIFY column2 SMALLINT UNSIGNED NOT NULL, MODIFY column3 INT NOT NULL"