Skip to content

Commit 5d54d79

Browse files
committed
Fix test, so it doesn't fail with MySQL 5.5, where InnoDB
is the default engine
1 parent 3ed9d8f commit 5d54d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mysqli/tests/bug35759.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require_once('skipifconnectfailure.inc');
1818
while (++$i < $col_num) {
1919
$create .= ", a$i MEDIUMBLOB NOT NULL DEFAULT ''";
2020
}
21-
$create .= ")";
21+
$create .= ") ENGINE=MyISAM"; // doesn't work with InnoDB, which is default in 5.5
2222

2323
if (!$mysql->query($create)) {
2424
if (1101 == $mysql->errno) {

0 commit comments

Comments
 (0)