Dandandan commented on code in PR #13134:
URL: https://github.com/apache/datafusion/pull/13134#discussion_r1818113940
##########
datafusion/physical-plan/src/joins/utils.rs:
##########
@@ -1171,6 +1173,15 @@ pub(crate) fn get_final_indices_from_bit_map(
join_type: JoinType,
) -> (UInt64Array, UInt32Array) {
let left_size = left_bit_map.len();
+ if join_type == JoinType::LeftMark {
+ let left_indices = (0..left_size)
Review Comment:
```suggestion
let left_indices = (0..left_size as u64)
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]