【发布时间】:2022-06-12 23:36:28
【问题描述】:
根据Athena Iceberg documentation,支持map类型。
为什么这些语句都不起作用?
CREATE TABLE iceberg_test1 (id string, themap map)
LOCATION 's3://mybucket/test/iceberg1'
TBLPROPERTIES ( 'table_type' = 'ICEBERG' );
错误:
无法解析冰山查询
第二次尝试:
CREATE TABLE iceberg_test1 (id string, themap map<varchar,varchar>)
LOCATION 's3://mybucket/test/iceberg1'
TBLPROPERTIES ( 'table_type' = 'ICEBERG' );
同样的错误:
无法解析冰山查询
【问题讨论】:
标签: amazon-athena athena iceberg apache-iceberg