diff --git a/dbt/include/athena/macros/adapters/relation.sql b/dbt/include/athena/macros/adapters/relation.sql index 7e73aca7..0bf4f863 100644 --- a/dbt/include/athena/macros/adapters/relation.sql +++ b/dbt/include/athena/macros/adapters/relation.sql @@ -1,5 +1,5 @@ {% macro athena__drop_relation(relation) -%} - {% if config.get('incremental_strategy') == 'insert_overwrite' %} + {% if config.get('incremental_strategy') != 'append' %} {%- do adapter.clean_up_table(relation.schema, relation.table) -%} {% endif %} {% call statement('drop_relation', auto_begin=False) -%}