Zhe Wu created ARROW-15808:
------------------------------
Summary: take function doesn't work when table has large row counts
Key: ARROW-15808
URL: https://issues.apache.org/jira/browse/ARROW-15808
Project: Apache Arrow
Issue Type: New Feature
Environment: pyarrow 7.0.0, pyarrow 5.0
Reporter: Zhe Wu
Steps to reproduce the error:
{code:java}
import pyarrow as pa
a = pa.array(["123456789"]*260000000)
tb = pa.table([a], names=["a"])
tb.take([1])
{code}
ERROR message:
ArrowInvalid: offset overflow while concatenating arrays
--
This message was sent by Atlassian Jira
(v8.20.1#820001)