We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f46ccb commit 2a19737Copy full SHA for 2a19737
sqlmesh/core/plan/evaluator.py
@@ -118,7 +118,8 @@ def _push(self, plan: Plan) -> None:
118
"""
119
snapshot_id_to_snapshot = {s.snapshot_id: s for s in plan.snapshots}
120
121
- self.console.start_creation_progress(plan.environment.name, len(snapshot_id_to_snapshot))
+ if plan.new_snapshots:
122
+ self.console.start_creation_progress(plan.environment.name, len(plan.new_snapshots))
123
124
def on_complete(snapshot: SnapshotInfoLike) -> None:
125
self.console.update_creation_progress(1)
0 commit comments