viirya commented on code in PR #9236:
URL: https://github.com/apache/arrow-datafusion/pull/9236#discussion_r1515278377
##########
datafusion/physical-plan/src/joins/hash_join.rs:
##########
@@ -494,14 +582,33 @@ impl DisplayAs for HashJoinExec {
.join(", ");
write!(
f,
- "HashJoinExec: mode={:?}, join_type={:?}, on=[{}]{}",
- self.mode, self.join_type, on, display_filter
+ "HashJoinExec: mode={:?}, join_type={:?}, on=[{}]{}{}",
+ self.mode, self.join_type, on, display_filter,
display_projections
)
}
}
}
}
+pub fn project_index_to_exprs(
Review Comment:
```suggestion
fn project_index_to_exprs(
```
--
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]