[MCOL-4240] Support non-scalar data types enum, set, json Created: 2020-08-10 Updated: 2021-02-19 Resolved: 2021-02-19 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | N/A |
| Affects Version/s: | None |
| Fix Version/s: | N/A |
| Type: | New Feature | Priority: | Major |
| Reporter: | susil.behera | Assignee: | Todd Stoffel (Inactive) |
| Resolution: | Duplicate | Votes: | 0 |
| Labels: | None | ||
| Environment: |
Server version: 10.5.5-MariaDB MariaDB Server |
||
| Issue Links: |
|
||||||||
| Description |
|
At present Columnstore doesn't support non-scalar data types like enum, set, json. CREATE TABLE t_enum(col ENUM('min','max','avg'))ENGINE=Columnstore; CREATE TABLE t_set(col SET('x','y','z'))ENGINE=Columnstore; CREATE TABLE t_json(col JSON)ENGINE=Columnstore; Like Innodb we should support the above data types. |