HaoYang670 commented on PR #2686:
URL: https://github.com/apache/arrow-rs/pull/2686#issuecomment-1241452933

   This PR should partially, close #2205 I guess, because it doesn't update the 
`Binary -> String`:
   ```rust
   impl<OffsetSize: OffsetSizeTrait> From<GenericBinaryArray<OffsetSize>>
       for GenericStringArray<OffsetSize>
   {
       fn from(v: GenericBinaryArray<OffsetSize>) -> Self {
           let builder = 
v.into_data().into_builder().data_type(Self::DATA_TYPE);
           let data = unsafe { builder.build_unchecked() };
           Self::from(data)
       }
   }
   ```
   
   


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