Test update for sql_mode = ansi

This commit is contained in:
Ulf Wendel 2010-09-22 15:22:22 +00:00
parent 8236f62ce2
commit 44fba4d934

View File

@ -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;