Skip to content

Commit

Permalink
Rename to fanout_by_hash
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Chia committed Oct 28, 2024
1 parent c2838a5 commit d36dd0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion daft/execution/rust_physical_plan_shim.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def sort(
)


def split_by_hash(
def fanout_by_hash(
input: physical_plan.InProgressPhysicalPlan[PartitionT],
num_partitions: int,
partition_by: list[PyExpr],
Expand Down
2 changes: 1 addition & 1 deletion src/daft-scheduler/src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ fn physical_plan_to_partition_tasks(
py,
"daft.execution.rust_physical_plan_shim"
))?
.getattr(pyo3::intern!(py, "split_by_hash"))?
.getattr(pyo3::intern!(py, "fanout_by_hash"))?
.call1((
upstream_iter,
hash_clustering_config.num_partitions,
Expand Down

0 comments on commit d36dd0c

Please sign in to comment.