We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44fb06d commit 349f152Copy full SHA for 349f152
sqlmesh/core/plan/builder.py
@@ -527,6 +527,9 @@ def _adjust_new_snapshot_intervals(self) -> None:
527
528
def _check_destructive_changes(self, directly_modified: t.Set[SnapshotId]) -> None:
529
for s_id in sorted(directly_modified):
530
+ if s_id.name not in self._context_diff.modified_snapshots:
531
+ continue
532
+
533
snapshot = self._context_diff.snapshots[s_id]
534
# should we raise/warn if this snapshot has/inherits a destructive change?
535
should_raise_or_warn = (
0 commit comments