Skip to content

Commit

Permalink
Update datafusion dependency to the latest version (#612)
Browse files Browse the repository at this point in the history
* Update datafusion dependency to the latest version

* Fix python

* Skip ut of test_window_lead due to apache/datafusion-python#135

* Fix clippy

---------

Co-authored-by: yangzhong <yangzhong@ebay.com>
  • Loading branch information
yahoNanJing and kyotoYaho authored Jan 30, 2023
1 parent 0b6b28f commit b0d8cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ballista/scheduler/src/state/execution_graph_dot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl ExecutionGraphDot {
for (reader_node, parent_stage_id) in &meta.readers {
// shuffle write node is always node zero
let parent_shuffle_write_node = format!("stage_{parent_stage_id}_0");
links.push(format!("{parent_shuffle_write_node} -> {reader_node}",));
links.push(format!("{parent_shuffle_write_node} -> {reader_node}"));
}
// keep the order deterministic
links.sort();
Expand Down

0 comments on commit b0d8cc7

Please sign in to comment.