Tuan Nguyen
05/27/2023, 12:12 AMarray<string>
. Has anyone had this problem before? Running `SHOW COLUMNS IN table_name`in Athena shows a list of column names as expected.Rahul Sharma
05/27/2023, 9:53 AMCREATE EXTERNAL TABLE delta_test.entrypoints_test
LOCATION '<s3://jgdp-lakehouse-dev/raw-ingestion/jwr/entrypoints_test/>'
TBLPROPERTIES (
'table_type'='DELTA'
);
Carl Mattsson
05/29/2023, 5:21 AMspark.databricks.delta.catalog.update.hiveSchema.enabled true
Some additional Glue permissions might be needed.Tuan Nguyen
05/29/2023, 8:23 AMCREATE EXTERNAL TABLE delta_test.entrypoints_test
LOCATION '<s3://some_locations>'
TBLPROPERTIES (
'table_type'='DELTA'
);
With the config provided by Carl, I could specify a target schema in DLT and it worked.