diff options
author | Andrey Hristov <andrey@php.net> | 2010-08-16 16:15:15 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-08-16 16:15:15 +0000 |
commit | 5d54d79e04d798f7960e352dd58ec774d2ecd1a1 (patch) | |
tree | 1ae3a55b93ef7cd057b88ebfd8b11599a2daf08b | |
parent | 3ed9d8fd859124ea5db8fb4d31b6818068b1781c (diff) | |
download | php-git-5d54d79e04d798f7960e352dd58ec774d2ecd1a1.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.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) { |