tustvold commented on code in PR #2865:
URL: https://github.com/apache/arrow-rs/pull/2865#discussion_r995154829
##########
arrow-array/src/array/primitive_array.rs:
##########
@@ -1564,8 +1558,8 @@ mod tests {
.build()
.unwrap();
let decimal_array = Decimal128Array::from(array_data);
- assert_eq!(8_887_000_000_i128, decimal_array.value(0).into());
- assert_eq!(-8_887_000_000_i128, decimal_array.value(1).into());
+ assert_eq!(8_887_000_000_i128, decimal_array.value(0));
Review Comment:
These `Into::into` conversions are redundant and were making clippy unhappy
--
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]