Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
5.5.24, 5.3.7, 5.2.12
-
None
-
None
Description
Trying to use an ENUM data type for a persistent virtual column results in an error
CREATE TABLE table1 (
a INT not null,
b char(2) not null,
c enum("Y","N") as (case when b = "aa" then "Y" else "N" end) persistent
);
ERROR 1033 (HY000): Incorrect information in file: './database/table1.frm'
Changing the datatype results in a successful table creation.
CREATE TABLE table1 (
a INT not null,
b char(2) not null,
c char(1) as (case when b = "aa" then "Y" else "N" end) persistent
);
Query OK, 0 rows affected (0.16 sec)
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Assignee | Elena Stepanova [ elenst ] |
Fix Version/s | 5.5.26 [ 11100 ] | |
Fix Version/s | 5.3.8 [ 10900 ] | |
Affects Version/s | 5.2.12 [ 10702 ] | |
Affects Version/s | 5.3.7 [ 10700 ] | |
Assignee | Elena Stepanova [ elenst ] | Igor Babaev [ igor ] |
Summary | virtual columns don't work with enum as data type | virtual columns don't work with enum or set as data type |
Assignee | Igor Babaev [ igor ] | Oleksandr Byelkin [ sanja ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | Open [ 1 ] |
Assignee | Oleksandr Byelkin [ sanja ] | Igor Babaev [ igor ] |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | defaullt [ 12301 ] | MariaDB v2 [ 43896 ] |
Workflow | MariaDB v2 [ 43896 ] | MariaDB v3 [ 63126 ] |
Workflow | MariaDB v3 [ 63126 ] | MariaDB v4 [ 144855 ] |