Skip to content

Commit 6cf3092

Browse files
authored
Go 1.17 and MariaDB 10.6 are released (#1253)
* Go 1.17 and MariaDB 10.6 are released * use `utf8mb4_unicode_ci` instead of `utf8_unicode_ci` https://mariadb.com/kb/en/changes-improvements-in-mariadb-106/#character-sets > The utf8 character set (and related collations) is now by default an alias for utf8mb3 rather than the other way around.
1 parent a5bb807 commit 6cf3092

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: .github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
import json
2323
go = [
2424
# Keep the most recent production release at the top
25-
'1.16',
25+
'1.17',
2626
# Older production releases
27+
'1.16',
2728
'1.15',
2829
'1.14',
2930
'1.13',
@@ -32,6 +33,7 @@ jobs:
3233
'8.0',
3334
'5.7',
3435
'5.6',
36+
'mariadb-10.6',
3537
'mariadb-10.5',
3638
'mariadb-10.4',
3739
'mariadb-10.3',

Diff for: driver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,7 @@ func TestCollation(t *testing.T) {
14791479
defaultCollation, // driver default
14801480
"latin1_general_ci",
14811481
"binary",
1482-
"utf8_unicode_ci",
1482+
"utf8mb4_unicode_ci",
14831483
"cp1257_bin",
14841484
}
14851485

0 commit comments

Comments
 (0)