alamb commented on issue #1202:
URL: https://github.com/apache/arrow-rs/issues/1202#issuecomment-1015636131


   Perhaps one could follow the example of
   
   https://docs.rs/arrow/7.0.0/arrow/array/type.StringArray.html
   
   ```rust
   use arrow::array::StringArray;
   let array1 = StringArray::from(vec![Some("foo"), None, Some("bar")]);
   let array2 = StringArray::from(vec![Some("foo"), None, Some("baz")]);
   let result = eq_dyn(&array1, &array2).unwrap();
   assert_eq!(BooleanArray::from(vec![Some(true), None, Some(false)]), result))
   ```
   


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