Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.1(EOL), 10.2(EOL), 10.3(EOL)
-
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