alamb opened a new issue, #7952: URL: https://github.com/apache/arrow-rs/issues/7952
It seems like the `validated` and `is_fully_validated` flags doesn't need to be part of a logical type check? Like two variants can be equal by value even if one is fully validated and one is not I would expect the following to pass for all variants and metadata ```rust let variant1 = Variant::new(metadata, buffers); let variant2 = Variant::new(metadata, buffers).with_full_validation(); assert_eq!(variant1, variant2) ``` _Originally posted by @alamb in https://github.com/apache/arrow-rs/pull/7943#discussion_r2213119799_ -- 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: github-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org