scovich commented on issue #8420: URL: https://github.com/apache/arrow-rs/issues/8420#issuecomment-3329941010
Update: The variant shredding spec apparently (implicitly?) requires that `typed_value` columns must be valid variant types. For fixed-size binary, specifically, see [case 137 parquet-testing/shredded_variant/cases.json](https://github.com/apache/parquet-testing/blob/master/shredded_variant/cases.json#L812-L815) that expects the read to fail. So in fact, the match arm should be updated to only check for the 16-byte len that signals a UUID: ```rust DataType::FixedSizeBinary(16) => { ``` -- 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]
