Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.1, 10.2, 10.3
-
Component/s: Character Sets, Data types
-
Labels:None
Description
CREATE OR REPLACE TABLE t1 (a TEXT(1431655798) CHARACTER SET utf8); |
SHOW CREATE TABLE t1; |
+-------+-----------------------------------------------------------------------------------------------------------+
|
| Table | Create Table |
|
+-------+-----------------------------------------------------------------------------------------------------------+
|
| t1 | CREATE TABLE `t1` (
|
`a` tinytext CHARACTER SET utf8 DEFAULT NULL
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
|
+-------+-----------------------------------------------------------------------------------------------------------+
|
Notice, it created a TINYTEXT column.
The expected type is LONGTEXT.
Attachments
Issue Links
- blocks
-
MDEV-4912 Data type plugin API version 1
-
- Closed
-
- relates to
-
MDEV-13384 "window" seems like a reserved column name but it's not listed as one
-
- Closed
-
-
MDEV-13530 VARBINARY doesn't convert to to BLOB for sizes 65533, 65534 and 65535
-
- Closed
-