We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b87629 commit d00e0b9Copy full SHA for d00e0b9
1 file changed
sqlmesh/core/scheduler.py
@@ -527,7 +527,7 @@ def run_node(node: SchedulingUnit) -> None:
527
batch_index=node.batch_index,
528
allow_destructive_snapshots=allow_destructive_snapshots,
529
allow_additive_snapshots=allow_additive_snapshots,
530
- target_table_exists=snapshot.snapshot_id not in snapshots_to_create,
+ target_table_exists=snapshot.snapshot_id not in snapshots_to_create,
531
)
532
533
evaluation_duration_ms = now_timestamp() - execution_start_ts
@@ -554,6 +554,7 @@ def run_node(node: SchedulingUnit) -> None:
554
snapshots=self.snapshots_by_name,
555
deployability_index=deployability_index,
556
allow_destructive_snapshots=allow_destructive_snapshots or set(),
557
+ allow_additive_snapshots=allow_additive_snapshots or set(),
558
559
560
try:
0 commit comments