Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
improve comment
  • Loading branch information
izeigerman committed Sep 15, 2025
commit 57e2d308c278c946403bd4275d1a23d77cdb4220
1 change: 1 addition & 0 deletions sqlmesh/core/plan/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def is_breaking_kind_change(old: Snapshot, new: Snapshot) -> bool:
return True
if not new.is_model or not old.is_model:
# If neither are models, then we don't need to rebuild
# Note that the remaining checks only apply to model snapshots
return False
Comment thread
izeigerman marked this conversation as resolved.
if old.virtual_environment_mode != new.virtual_environment_mode:
# If the virtual environment mode has changed, then we need to rebuild
Expand Down