map data type limitations #3915
Labels
bug
Something isn't working
documentation
Improvements or additions to documentation
enhancement
New feature or request
execute-engine
hybridse sql engine
sql
SQL standard. definition/revise for a SQL statement/clause etc
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 supported
SELECT * FROM t1;
statement, the columns are displaying incorrectly or out of alignment.The text was updated successfully, but these errors were encountered: