You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/01/17 04:39:36 UTC

[GitHub] [arrow] jorgecarleitao commented on a change in pull request #9211: ARROW-11239: [Rust] Fixed equality with offsets and nulls

jorgecarleitao commented on a change in pull request #9211:
URL: https://github.com/apache/arrow/pull/9211#discussion_r559077199



##########
File path: rust/arrow/src/array/equal/decimal.rs
##########
@@ -60,7 +60,7 @@ pub(super) fn decimal_equal(
             let rhs_pos = rhs_start + i;
 
             let lhs_is_null = !get_bit(lhs_null_bytes, lhs_pos + lhs.offset());
-            let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + lhs.offset());
+            let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset());

Review comment:
       while reviewing, got this one also. xD




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org