File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/MySqlConnector/Serialization Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
- namespace MySql . Data . Serialization
1
+ namespace MySql . Data . Serialization
2
2
{
3
3
/// <summary>
4
4
/// MySQL character set codes.
5
5
/// </summary>
6
- /// <remarks>Obtained from <c>SELECT id, collation_name FROM information_schema.collations ORDER BY id;</c> on MySQL 5.7.11 .</remarks>
6
+ /// <remarks>Obtained from <c>SELECT id, collation_name FROM information_schema.collations ORDER BY id;</c> on MySQL 8.0.3 .</remarks>
7
7
internal enum CharacterSet : ushort
8
8
{
9
9
None = 0 ,
@@ -81,6 +81,7 @@ internal enum CharacterSet : ushort
81
81
Keybcs2Binary = 73 ,
82
82
Koi8rBinary = 74 ,
83
83
Koi8uBinary = 75 ,
84
+ Utf8ToLowerCaseInsensitive = 76 ,
84
85
Latin2Binary = 77 ,
85
86
Latin5Binary = 78 ,
86
87
Latin7Binary = 79 ,
@@ -272,5 +273,9 @@ internal enum CharacterSet : ushort
272
273
Utf8Mb4CroatianUca900AccentSensitiveCaseSensitive = 298 ,
273
274
Utf8Mb4VietnameseUca900AccentSensitiveCaseSensitive = 300 ,
274
275
Utf8Mb4JapaneseUca900AccentSensitiveCaseSensitive = 303 ,
276
+ Utf8Mb4JapaneseUca900AccentSensitiveCaseSensitiveKanaSensitive = 304 ,
277
+ Utf8Mb4Uca900AccentSensitiveCaseInsensitive = 305 ,
278
+ Utf8Mb4RussianUca900AccentInsensitiveCaseInsensitive = 306 ,
279
+ Utf8Mb4RussianUca900AccentSensitiveCaseSensitive = 307 ,
275
280
}
276
281
}
You can’t perform that action at this time.
0 commit comments