You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "patrice (Jira)" <ji...@apache.org> on 2022/02/17 20:08:00 UTC

[jira] [Created] (ARROW-15723) PyArrow segfault on orc write table

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)