tustvold commented on code in PR #5042:
URL: https://github.com/apache/arrow-rs/pull/5042#discussion_r1383377009
##########
arrow-json/src/reader/tape.rs:
##########
@@ -180,7 +180,7 @@ impl<'a> Tape<'a> {
TapeElement::Null => out.push_str("null"),
TapeElement::I64(high) => match self.get(idx + 1) {
TapeElement::I32(low) => {
- let val = (high as i64) << 32 | low as i64;
+ let val = (high as i64) << 32 | (low as u32) as i64;
Review Comment:
It's only used in error messages
--
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]