rachtsingh commented on issue #34353:
URL: https://github.com/apache/arrow/issues/34353#issuecomment-1447298298

   Thank you for the quick response! That seems like it would solve it (and I 
can ping the pandas devs to get the correct function to be called with 
pd.Series.__add__ with string[pyarrow] dtype), but I think I must be converting 
data wrong because I'm getting what seems to be incorrect results:
   
   ```python
   In [35]: df = pd.DataFrame({'a': ['b'], 'c': ['d']}).astype(dtype={'a': 
'string[pyarrow]', 'c': 'string[pyarrow]'})
   In [36]: pc.binary_join_element_wise(pa.array(df.a, pa.string()), 
pa.array(df.c, pa.string())).to_pandas()
   Out[36]:
   0    b
   dtype: object
   ```
   
   I think I should expect to see `bd` as the resulting output?


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