Jefffrey commented on code in PR #10558:
URL: https://github.com/apache/arrow-rs/pull/10558#discussion_r3725077967


##########
arrow-avro/src/reader/mod.rs:
##########
@@ -4771,7 +4771,7 @@ mod test {
         {
             let idx = schema.index_of("array_of_union").unwrap();
             let dt = schema.field(idx).data_type().clone();
-            let (item_field, _) = match &dt {
+            let (item_field, ()) = match &dt {
                 DataType::List(f) => (f.clone(), ()),

Review Comment:
   ```suggestion
               let item_field = match &dt {
                   DataType::List(f) => f.clone(),
   ```



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