We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2006664 commit 05d947eCopy full SHA for 05d947e
sqlmesh/core/snapshot/definition.py
@@ -784,7 +784,9 @@ def get_removal_interval(
784
785
# only warn if the requested removal interval was a subset of the actual model intervals and was automatically expanded
786
# if the requested interval was the same or wider than the actual model intervals, no need to warn
787
- if requested_start > expanded_start or requested_end < expanded_end:
+ if (
788
+ requested_start > expanded_start or requested_end < expanded_end
789
+ ) and self.is_incremental:
790
from sqlmesh.core.console import get_console
791
792
get_console().log_warning(
0 commit comments