Skip to content

Commit

Permalink
add ephemeral as valid option to is_incremental()
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-urrutia committed Feb 6, 2025
1 parent 588cbab commit 9ba1958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/task/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ def _is_incremental(self, model) -> bool:
if (
relation is not None
and relation.type == "table"
and model.config.materialized == "incremental"
and model.config.materialized in ["incremental","ephemeral"]
):
if model.config.full_refresh is not None:
return not model.config.full_refresh
Expand Down

0 comments on commit 9ba1958

Please sign in to comment.