We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f2b50f5 + 6153b94 commit d6a77ccCopy full SHA for d6a77cc
integration-tests/source/mysql/test/integration.d
@@ -968,14 +968,14 @@ unittest
968
auto stmt = cn.prepare(
969
"SELECT * FROM information_schema.character_sets"~
970
" WHERE CHARACTER_SET_NAME=?");
971
- auto val = "utf8";
+ auto val = "utf8mb4";
972
stmt.setArg(0, val);
973
auto row = cn.queryRow(stmt).get;
974
assert(row.length == 4);
975
- assert(row[0] == "utf8");
976
- assert(row[1] == "utf8_general_ci");
+ assert(row[0] == "utf8mb4");
+ assert(row[1] == "utf8mb4_general_ci");
977
assert(row[2] == "UTF-8 Unicode");
978
- assert(row[3] == 3);
+ assert(row[3] == 4);
979
}
980
981
@("coupleTypes")
0 commit comments