From: Andrey Hristov Date: Mon, 16 Aug 2010 16:15:15 +0000 (+0000) Subject: Fix test, so it doesn't fail with MySQL 5.5, where InnoDB X-Git-Tag: php-5.3.4RC1~345 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a9ca62a77006ae7633bdafc105c3174ec16b02c;p=php Fix test, so it doesn't fail with MySQL 5.5, where InnoDB is the default engine --- 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) {