patrice created ARROW-15723:
-------------------------------

             Summary: PyArrow segfault on orc write table
                 Key: ARROW-15723
                 URL: https://issues.apache.org/jira/browse/ARROW-15723
             Project: Apache Arrow
          Issue Type: Bug
          Components: Python
    Affects Versions: 7.0.0
            Reporter: patrice


pyarrow segfault when trying to write an orc from a table containing nullArray.

 

from pyarrow import orc
import pyarrow as pa

a = pa.array([1, None, 3, None])
b = pa.array([None, None, None, None])
table = pa.table(\{"int64": a, "utf8": b})
orc.write_table(table, 'test.orc')


zsh: segmentation fault  python3



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to