We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ae9c4c commit 6d884f8Copy full SHA for 6d884f8
src/execution_plans/network_coalesce.rs
@@ -127,6 +127,7 @@ impl NetworkBoundary for NetworkCoalesceExec {
127
return plan_err!("can only return wrapped child if on Pending state");
128
};
129
130
+ // As this node coalesces multiple tasks into 1, it must run in a stage with 1 task.
131
if n_tasks > 1 {
132
return Err(limit_tasks_err(1));
133
}
0 commit comments