andygrove commented on a change in pull request #714:
URL: https://github.com/apache/arrow-datafusion/pull/714#discussion_r667545951
##########
File path: ballista/rust/core/src/execution_plans/shuffle_writer.rs
##########
@@ -254,13 +254,13 @@ impl ExecutionPlan for ShuffleWriterExec {
// write batch out
let start = Instant::now();
- match &mut writers[num_output_partition] {
+ match &mut writers[output_partition_num] {
Some(w) => {
w.write(&output_batch)?;
}
None => {
let mut path = path.clone();
- path.push(&format!("{}", partition));
Review comment:
This is the fix
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]