Skip to content

Commit

Permalink
Merge pull request #384 from flytrap/main
Browse files Browse the repository at this point in the history
fix: create materialized view on cluster
  • Loading branch information
BentsiLeviav authored Feb 5, 2025
2 parents 0c4ee6b + 210d532 commit c28b9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/clickhouse/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_on_cluster(
) -> bool:
if cluster.strip():
return (
materialized in ('view', 'dictionary')
materialized in ('materialized_view', 'view', 'dictionary')
or 'distributed' in materialized
or 'Replicated' in engine
)
Expand Down

0 comments on commit c28b9aa

Please sign in to comment.