alamb commented on PR #6587: URL: https://github.com/apache/arrow-datafusion/pull/6587#issuecomment-1634854027
Hi @kazuyukitanimura How about using https://docs.rs/arrow/latest/arrow/array/struct.GenericByteArray.html#method.from_iter_values This works for me: ```rust let v = vec![vec![1u8,2,3]]; let lba = LargeBinaryArray::from_iter_values(v); ``` -- 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]
