From: Ulf Wendel Date: Wed, 22 Sep 2010 15:22:22 +0000 (+0000) Subject: Test update for sql_mode = ansi X-Git-Tag: php-5.4.0alpha1~191^2~902 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44fba4d9346f46a6f38dccdc6a091f07f479c66d;p=php Test update for sql_mode = ansi --- diff --git a/ext/mysqli/tests/mysqli_insert_packet_overflow.phpt b/ext/mysqli/tests/mysqli_insert_packet_overflow.phpt index 35f35a5dc1..c7f38fa0fc 100644 --- a/ext/mysqli/tests/mysqli_insert_packet_overflow.phpt +++ b/ext/mysqli/tests/mysqli_insert_packet_overflow.phpt @@ -74,8 +74,8 @@ memory_limit=256M if (!mysqli_query($link, "CREATE TABLE test(col_blob LONGBLOB) ENGINE=" . $engine)) printf("[012] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); - $query_prefix = 'INSERT INTO test(col_blob) VALUES ("'; - $query_postfix = '")'; + $query_prefix = "INSERT INTO test(col_blob) VALUES ('"; + $query_postfix = "')"; $query_len = strlen($query_prefix) + strlen($query_postfix); $com_query_len = 2;