parthchandra commented on issue #7040: URL: https://github.com/apache/arrow-rs/issues/7040#issuecomment-2625224224
Let's take the example of the third value in `_9`. The value in the parquet file is the bit pattern `0xffffffee`. Interpreted as a signed 8 bit integer the value would be `-18`, interpreted as an unsigned 8 bit integer the value would be `238`. Note that this interpretation only looks at the lower 8 bits. Because the annotation in the parquet schema says the value is unsigned and 8 bits we must interpret the bit pattern as an unsigned 8 bit integer and produce 238. -- 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]
