We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b87dfc6 commit 57e2d30Copy full SHA for 57e2d30
sqlmesh/core/plan/common.py
@@ -28,6 +28,7 @@ def is_breaking_kind_change(old: Snapshot, new: Snapshot) -> bool:
28
return True
29
if not new.is_model or not old.is_model:
30
# If neither are models, then we don't need to rebuild
31
+ # Note that the remaining checks only apply to model snapshots
32
return False
33
if old.virtual_environment_mode != new.virtual_environment_mode:
34
# If the virtual environment mode has changed, then we need to rebuild
0 commit comments