Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/execution_plans/distributed_leaf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ pub struct DistributedLeafExec {

impl DistributedLeafExec {
/// Builds a new [DistributedLeafExec] based on the provided original plan and its per-task
/// variants. Provided variants must expose the same partition count as the original plan.
/// variants. Every variant must expose the same schema and partition count as every other
/// variant.
pub fn try_new(
original: Arc<dyn ExecutionPlan>,
variants: impl IntoIterator<Item = Arc<dyn ExecutionPlan>>,
Expand Down
Loading