I've tried to create a DELTA table in AWS(Athena) but I've got an error.
reference : https://docs.aws.amazon.com/athena/latest/ug/delta-lake-tables.html#delta-lake-tables-getting-started
CREATE EXTERNAL TABLE transformed_tables.test (
col1 STRING COMMENT '',
col2 STRING COMMENT ''
)
LOCATION 's3://...../test/'
TBLPROPERTIES ('table_type' = 'DELTA')
It returns this error
Could you please help to resolve this error.
I need to create a DELTA table in Athena. It is a new feature in AWS that we can have a DELTA table in Athena.