kazuyukitanimura commented on PR #6587:
URL: 
https://github.com/apache/arrow-datafusion/pull/6587#issuecomment-1633313158

   Hi @alamb,
   I was using `LargeBinaryArray::from_slice` for performance reasons (to avoid 
copying). E.g.
   ```
   let v = vec![vec![1u8,2,3]];
   let lba = LargeBinaryArray::from_slice(&v);
   ```
   Now the API is gone, I was wondering if you could advise on alternatives. I 
can copy the old code back into my code or I can contribute to implement 
`From<Vec<Vec<u8>>>` to arrow-rs.
   I wanted to check if you may have any insight on how other users adapted 
this change.


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