Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

Commit 93b6d6a

Browse files
committed
[INTERNAL, FIXES] More Local Data Designer Execution Fixes
GitOrigin-RevId: b63c8603e1062ab065ff8f435f35bf898bbd1d12
1 parent ad916e9 commit 93b6d6a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/gretel_client/data_designer/data_designer.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,10 @@ def _build_workflow(
761761
for column_name in sorted_columns_names:
762762
column = self.get_column(column_name)
763763
next_step = self._get_next_dag_step(column_name)
764+
765+
if hasattr(next_step, "num_records"):
766+
next_step.num_records = num_records
767+
764768
builder.add_step(
765769
step=next_step,
766770
step_inputs=[last_step_added],

0 commit comments

Comments
 (0)