kevinmingtarja commented on issue #39415:
URL: https://github.com/apache/arrow/issues/39415#issuecomment-1890837602

   Hi @lukemanley, just curious, what version and platform are you running on?
   
   I tried to reproduce this using `pyarrow-14.0.2` on both my Apple M1 Mac and 
an amd64 Ubuntu 22.04 (EC2 VM), but couldn't. I did try it as well on google 
colab and the session kept on crashing, which may be because of the segfault.
   
   ```
   Python 3.11.5 (main, Sep 11 2023, 08:31:25) [Clang 14.0.6 ] on darwin
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import pyarrow as pa
   >>> arr = pa.array(list("ABC"), pa.large_string())
   >>> t1 = pa.table({"key": arr})
   >>> t2 = pa.table({"key": arr[1:]})
   >>> t1.join(t2, "key", join_type="inner")
   pyarrow.Table
   key: large_string
   ----
   key: [["B","C"]]
   ```


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