diff options
-rw-r--r-- | ext/mysqli/tests/bug35759.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/bug35759.phpt b/ext/mysqli/tests/bug35759.phpt index bcf9cb8e67..99c1380d95 100644 --- a/ext/mysqli/tests/bug35759.phpt +++ b/ext/mysqli/tests/bug35759.phpt @@ -18,7 +18,7 @@ require_once('skipifconnectfailure.inc'); while (++$i < $col_num) { $create .= ", a$i MEDIUMBLOB NOT NULL DEFAULT ''"; } - $create .= ")"; + $create .= ") ENGINE=MyISAM"; // doesn't work with InnoDB, which is default in 5.5 if (!$mysql->query($create)) { if (1101 == $mysql->errno) { |