-
Notifications
You must be signed in to change notification settings - Fork 330
map data type limitations #3915
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestexecute-enginehybridse sql enginehybridse sql enginesqlSQL standard. definition/revise for a SQL statement/clause etcSQL standard. definition/revise for a SQL statement/clause etc
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestexecute-enginehybridse sql enginehybridse sql enginesqlSQL standard. definition/revise for a SQL statement/clause etcSQL standard. definition/revise for a SQL statement/clause etc
Type
Fields
Give feedbackNo fields configured for issues without a type.
Bug Description
test table:
CREATE TABLE t1 (c1 string, c2 int, c3 MAP<string, string>);desc t1;statement, the key and value types of the map are not displayed.SHOW CREATE TABLE t1;statement, columns of type map are not displayed.insert into t1 values ("1", 1, map(1, "12", 2, "100"));W20240429 14:40:09.353835 19961 codec.cc:82] type is not supportedSELECT * FROM t1;statement, the columns are displaying incorrectly or out of alignment.