Details
-
New Feature
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
Data types NCHAR and NVARCHAR use CHARACTER SET utf8mb3.
With the general intent to switch from utf8mb3 to utf8mb4, this should also be fixed:
- either to hard-coded utf8mb4
- or according to UTF8_IS_UTF8MB3
CREATE OR REPLACE TABLE t1 (a NCHAR); |
SHOW CREATE TABLE t1; |
+-------+-------------------------------------------------------------------------------------------------------------+
|
| Table | Create Table |
|
+-------+-------------------------------------------------------------------------------------------------------------+
|
| t1 | CREATE TABLE `t1` (
|
`a` char(1) CHARACTER SET utf8mb3 DEFAULT NULL
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
|
+-------+-------------------------------------------------------------------------------------------------------------+
|
Attachments
Issue Links
- relates to
-
MDEV-29414 Map utf8 OS locales to utf8mb4
- Closed