jayzhan211 commented on PR #9312:
URL: 
https://github.com/apache/arrow-datafusion/pull/9312#issuecomment-1962271571

   If I understand correctly, it should pass the test like
   
   ```rust
           let inner = Arc::new(Field::new("item", DataType::Int32, false));
           let current_types = vec![
               DataType::FixedSizeList(inner.clone(), 2), // able to coerce for 
any size
           ];
           let signature = Signature::exact(vec![
               DataType::FixedSizeList(inner.clone(), FIXED_SIZE_LIST_WILDCARD),
           ], Volatility::Stable);
           let coerced_data_types = data_types(&current_types, 
&signature).unwrap();
           assert_eq!(coerced_data_types, current_types);
   ```


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