wjones127 commented on issue #33049:
URL: https://github.com/apache/arrow/issues/33049#issuecomment-1466401027

   > It looked to me very much like a 32 bit pointer limitation issue.
   
   Yes, it essentially is. We use 32-bit offsets for the default string and 
binary types. This means you always have to be careful when generating the 
arrays to chunk them if they get too large. Or otherwise use the `LargeString` 
variant, which uses 64-bit offsets. Polars, for example, takes the latter 
approach; they always use `LargeString`.
   
   Basically the bug with take and concatenation is that we aren't 
automatically handling the chunking for you.


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