Skip to content

Commit

Permalink
check that the change collection has changes instead of checking that…
Browse files Browse the repository at this point in the history
… it exists
  • Loading branch information
mikealfare committed Nov 7, 2023
1 parent 2127516 commit 2a85d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/bigquery/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def materialized_view_config_changeset(
context=new_materialized_view.cluster,
)

if config_change_collection:
if config_change_collection.has_changes:
return config_change_collection
return None

Expand Down

0 comments on commit 2a85d39

Please sign in to comment.