AdamGS commented on code in PR #9610:
URL: https://github.com/apache/arrow-rs/pull/9610#discussion_r2984242167


##########
parquet-variant-compute/src/variant_array.rs:
##########
@@ -453,6 +481,12 @@ impl VariantArray {
     }
 }
 
+impl PartialEq for VariantArray {
+    fn eq(&self, other: &Self) -> bool {
+        self.inner == other.inner
+    }
+}

Review Comment:
   This replaces the derived implementation, I think it should be correct as 
all other members are derived from it.



-- 
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]

Reply via email to