jackwener commented on issue #1390:
URL: https://github.com/apache/arrow-rs/issues/1390#issuecomment-1059900498


   Has it already been fixed?
   
   ```rust
   fn test_fixed_size_binary_array_from_sparse_iter() {
       let none_option: Option<[u8; 32]> = None;
       let input_arg = vec![none_option, none_option, none_option, none_option];
       let arr =
           
FixedSizeBinaryArray::try_from_sparse_iter(input_arg.into_iter()).unwrap();
       assert_eq!(0, arr.value_length());
       assert_eq!(4, arr.len())
   }
   ```
   
   I create and run this unit test, and it is ok.


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