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
Reporter: patrice
Assignee: Raúl Cumplido / @raulcd
Related issues:
Note: This issue was originally created as ARROW-15723. Please see the migration documentation for further details.
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
Reporter: patrice
Assignee: Raúl Cumplido / @raulcd
Related issues:
Note: This issue was originally created as ARROW-15723. Please see the migration documentation for further details.