You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printf("[009] Cannot determine current character set and collation\n");
35
-
36
-
$charset = mysqli_character_set_name($link);
37
-
if ($tmp['charset'] !== $charset) {
38
-
if ($tmp['collation'] === $charset) {
39
-
printf("[010] Could be known server bug http://bugs.mysql.com/bug.php?id=7923, collation %s instead of character set returned, expected string/%s, got %s/%s\n",
11
+
/* NOTE: http://bugs.mysql.com/bug.php?id=7923 makes this test fail very likely on all 4.1.x - 5.0.x! */
printf("[002] Cannot determine current character set and collation\n");
22
+
23
+
$charset = mysqli_character_set_name($link);
24
+
if ($tmp['charset'] !== $charset) {
25
+
if ($tmp['collation'] === $charset) {
26
+
printf("[003] Could be known server bug http://bugs.mysql.com/bug.php?id=7923, collation %s instead of character set returned, expected string/%s, got %s/%s\n",
printf("[009] Cannot determine current character set and collation\n");
33
-
34
-
$charset = $mysqli->character_set_name();
35
-
if ($tmp['charset'] !== $charset) {
36
-
if ($tmp['collation'] === $charset) {
37
-
printf("[010] Could be known server bug http://bugs.mysql.com/bug.php?id=7923, collation %s instead of character set returned, expected string/%s, got %s/%s\n",
printf("[002] Cannot determine current character set and collation\n");
22
+
23
+
$charset = $mysqli->character_set_name();
24
+
if ($tmp['charset'] !== $charset) {
25
+
if ($tmp['collation'] === $charset) {
26
+
printf("[003] Could be known server bug http://bugs.mysql.com/bug.php?id=7923, collation %s instead of character set returned, expected string/%s, got %s/%s\n",
0 commit comments