According to the Athena Iceberg documentation, the map
type is supported.
Why do neither of these statements work?
CREATE TABLE iceberg_test1 (id string, themap map)
LOCATION 's3://mybucket/test/iceberg1'
TBLPROPERTIES ( 'table_type' = 'ICEBERG' );
Error:
Iceberg query cannot be parsed
Second try:
CREATE TABLE iceberg_test1 (id string, themap map<varchar,varchar>)
LOCATION 's3://mybucket/test/iceberg1'
TBLPROPERTIES ( 'table_type' = 'ICEBERG' );
Same error:
Iceberg query cannot be parsed