From 5d54d79e04d798f7960e352dd58ec774d2ecd1a1 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Mon, 16 Aug 2010 16:15:15 +0000 Subject: [PATCH] Fix test, so it doesn't fail with MySQL 5.5, where InnoDB is the default engine --- ext/mysqli/tests/bug35759.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.50.1