Closed
Description
Travis-ci reports assert failure on the last line in this excerpt from when using MariaDB 10.2 (travis is using 10.2.14) and up:source/mysql/test/integration.d
EDIT: It is NOT this code after all:
rs = cn.query("select datecol from basetest limit 1").array;
assert(rs.length == 1);
Date d = rs[0][0].get!(Date);
assert(d.year == 2007 && d.month == 1 && d.day == 1);
EDIT: Apparently I read the line number wrong. The above line was never the test failure. This line is where the test failure was.