Make test case-insenstive so it works on 5.0 as well as 5.1+.

This commit is contained in:
Daniel Nichter
2012-03-06 12:05:52 -07:00
parent d20d8bb878
commit 89263e6465

View File

@@ -174,7 +174,7 @@ ok(
my $row = $dbh1->selectrow_arrayref("show create table test.mk_upgrade_left");
like(
$row->[1],
qr/`SUM\(total\)`\s+double\sDEFAULT/,
qr/`SUM\(total\)`\s+double\sDEFAULT/i,
"No M,D in table def (bug 926598)"
);