Skip to content

Commit

Permalink
[misc] correction to permit running Aurora CI second correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Aug 22, 2016
1 parent 2d50b01 commit 881fa44
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ public static void initClass() throws SQLException {
createTable("ytab", "y year");
createTable("maxcharlength", "maxcharlength char(1)", "character set utf8");
createTable("time_test", "ID int unsigned NOT NULL, time_test time(6), PRIMARY KEY (ID)", "engine=InnoDB");
sharedConnection.createStatement().execute("insert into time_test(id, time_test) values(1, '00:00:00'), (2, '00:00:00.123'), (3, null)");

if (testSingleHost) {
sharedConnection.createStatement().execute("insert into time_test(id, time_test) values(1, '00:00:00'), (2, '00:00:00.123'), (3, null)");
}
}

@Test
Expand Down

0 comments on commit 881fa44

Please sign in to comment.