having the test reproduce the problem for which it was created

This commit is contained in:
Shlomi Noach 2017-01-10 09:17:49 +02:00
parent 1921b0f9df
commit 374e82c8eb

View File

@ -8,7 +8,7 @@ create table gh_ost_test (
column5 int(11) NOT NULL,
column6 int(11) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY c12_uix (column1, column2)
KEY c12_uix (column1, column2)
) auto_increment=1;
drop event if exists gh_ost_test;
@ -22,6 +22,6 @@ create event gh_ost_test
do
begin
-- mediumint maxvalue: 16777215 (unsigned), 8388607 (signed)
insert into gh_ost_test values (NULL, 13382498, 536, 8388607, 3, 1483892218);
insert into gh_ost_test values (NULL, 13382498, 536, 10000000, 3, 1483892218);
insert into gh_ost_test values (NULL, 13382498, 536, 8388607, 3, 1483892217, 1483892218);
insert into gh_ost_test values (NULL, 13382498, 536, 10000000, 3, 1483892217, 1483892218);
end ;;