Uwe Korn created ARROW-9504:
-------------------------------

             Summary: [C++/Python] Segmentation fault on ChunkedArray.take
                 Key: ARROW-9504
                 URL: https://issues.apache.org/jira/browse/ARROW-9504
             Project: Apache Arrow
          Issue Type: Bug
            Reporter: Uwe Korn
             Fix For: 1.0.0


This leads to a segementation fault with the latest conda nigthlies on Python 
3.8 / macOS

{code}
import pyarrow as pa
import numpy as np

arr = pa.chunked_array([
  [
    "m",
    "J",
    "q",
    "k",
    "t"
  ],
  [
    "m",
    "J",
    "q",
    "k",
    "t"
  ]
])

indices = np.array([0, 5, 1, 6, 2, 7, 3, 8, 4, 9])
arr.take(indices)
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to