Skip to content

Commit 210d532

Browse files
committed
fix: create materialized view on cluster
1 parent bd45c3c commit 210d532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbt/adapters/clickhouse/relation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def get_on_cluster(
8282
) -> bool:
8383
if cluster.strip():
8484
return (
85-
materialized in ('view', 'dictionary')
85+
materialized in ('materialized_view', 'view', 'dictionary')
8686
or 'distributed' in materialized
8787
or 'Replicated' in engine
8888
)

0 commit comments

Comments
 (0)