You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have being suffering some issues while trying to create external partitions tables with some specific file formats , for instance using next configuration
Hi,
Thanks for developing this dbt adapter for Hive,
I have being suffering some issues while trying to create external partitions tables with some specific file formats , for instance using next configuration
{{ config( materialized="incremental", incremental_strategy= "insert_overwrite", external=True, file_format= "orc", partition_by=["some colum"], ) }}
Looks like this issue is happening because when the file format is added when table is being created (
dbt-hive/dbt/include/hive/macros/adapters.sql
Lines 125 to 137 in f293ba9
This is not consistent with Hive CREATE TABLE definition that expect STORED AS TO BE after partitioning and before location.
So that, I guess it should be something like following
Best Regards,
Zuma
The text was updated successfully, but these errors were encountered: