Skip to content

Commit

Permalink
Add docstring for "catch all" relation type of External (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored May 15, 2024
1 parent 2e7d04c commit eda1095
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dbt/adapters/contracts/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ class RelationType(StrEnum):
View = "view"
CTE = "cte"
MaterializedView = "materialized_view"
External = "external"
Ephemeral = "ephemeral"
# this is a "catch all" that is better than `None` == external to anything dbt is aware of
External = "external"


class MaterializationContract(Protocol):
Expand Down

0 comments on commit eda1095

Please sign in to comment.