summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2010-08-16 16:15:15 +0000
committerAndrey Hristov <andrey@php.net>2010-08-16 16:15:15 +0000
commit0a9ca62a77006ae7633bdafc105c3174ec16b02c (patch)
tree2155eb0dc6f68d9fdcfd87c2cd34913e5e975605
parent4d72dba3018222cbe2c2ae0903a59eabc445c4d1 (diff)
downloadphp-git-0a9ca62a77006ae7633bdafc105c3174ec16b02c.tar.gz
Fix test, so it doesn't fail with MySQL 5.5, where InnoDB
is the default engine
-rw-r--r--ext/mysqli/tests/bug35759.phpt2
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) {