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 570274c commit 28d2a0fCopy full SHA for 28d2a0f
sqlmesh/core/snapshot/definition.py
@@ -783,7 +783,9 @@ def get_removal_interval(
783
784
# only warn if the requested removal interval was a subset of the actual model intervals and was automatically expanded
785
# if the requested interval was the same or wider than the actual model intervals, no need to warn
786
- if requested_start > expanded_start or requested_end < expanded_end:
+ if (
787
+ requested_start > expanded_start or requested_end < expanded_end
788
+ ) and self.is_incremental:
789
from sqlmesh.core.console import get_console
790
791
get_console().log_warning(
0 commit comments