summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2014-07-30 12:23:24 -0400
committerRasmus Lerdorf <rasmus@php.net>2014-07-30 12:23:24 -0400
commit579c9066a0f37144f0be66e0b62431ba15a118be (patch)
tree386398501f405de9d8f8e3e1ef1b9cfd2042c7e2
parent52f4587e8a7a977909ea96c6ea9e27718d87b227 (diff)
parent8b9719d8b90c361fe56c3b6285676bc74fdf90c3 (diff)
downloadphp-git-579c9066a0f37144f0be66e0b62431ba15a118be.tar.gz
Merge commit '8b9719d' into PHP-5.5
* commit '8b9719d': We need to turn off any strict mode here for this warning to show up
-rw-r--r--ext/mysqli/tests/066.phpt3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mysqli/tests/066.phpt b/ext/mysqli/tests/066.phpt
index 91dfce5073..a337e038c1 100644
--- a/ext/mysqli/tests/066.phpt
+++ b/ext/mysqli/tests/066.phpt
@@ -12,6 +12,9 @@ require_once('skipifconnectfailure.inc');
/*** test mysqli_connect 127.0.0.1 ***/
$mysql = new my_mysqli($host, $user, $passwd, $db, $port, $socket);
+ if (!mysqli_query($mysql, "SET sql_mode=''"))
+ printf("[002] Cannot set SQL-Mode, [%d] %s\n", mysqli_errno($mysql), mysqli_error($mysql));
+
$mysql->query("DROP TABLE IF EXISTS test_warnings");
$mysql->query("CREATE TABLE test_warnings (a int not null) ENGINE=myisam");