You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "alamb (via GitHub)" <gi...@apache.org> on 2023/07/13 20:22:50 UTC

[GitHub] [arrow-datafusion] alamb commented on pull request #6587: Remove `FromSlice` in favor of `From` impl in upstream arrow-rs code

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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org