Skip to content

Commit

Permalink
fix: create materialized view on cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
flytrap committed Nov 14, 2024
1 parent bd45c3c commit 210d532
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 210d532

Please sign in to comment.