Skip to content

Commit d00e0b9

Browse files
committed
Fix rebase
1 parent 0b87629 commit d00e0b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sqlmesh/core/scheduler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ def run_node(node: SchedulingUnit) -> None:
527527
batch_index=node.batch_index,
528528
allow_destructive_snapshots=allow_destructive_snapshots,
529529
allow_additive_snapshots=allow_additive_snapshots,
530-
target_table_exists=snapshot.snapshot_id not in snapshots_to_create,
530+
target_table_exists=snapshot.snapshot_id not in snapshots_to_create,
531531
)
532532

533533
evaluation_duration_ms = now_timestamp() - execution_start_ts
@@ -554,6 +554,7 @@ def run_node(node: SchedulingUnit) -> None:
554554
snapshots=self.snapshots_by_name,
555555
deployability_index=deployability_index,
556556
allow_destructive_snapshots=allow_destructive_snapshots or set(),
557+
allow_additive_snapshots=allow_additive_snapshots or set(),
557558
)
558559

559560
try:

0 commit comments

Comments
 (0)