You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Adam Hooper (Jira)" <ji...@apache.org> on 2021/05/06 18:19:00 UTC

[jira] [Updated] (ARROW-12672) segfault after `pa.Array.fill_null()`

     [ https://issues.apache.org/jira/browse/ARROW-12672?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Adam Hooper updated ARROW-12672:
--------------------------------
    Description: 
The array returned by {{pa.Array.fill_null()}} is unusable.

{code}
>>> import pyarrow as pa
>>> arr = pa.array([None], pa.bool_()).fill_null(False)
>>> arr.cast(pa.int8())
Segmentation fault (core dumped)
{code}

  was:
The array returned by `pa.Array.fill_null()` is unusable.

{code}
>>> import pyarrow as pa
>>> arr = pa.array([None], pa.bool_()).fill_null(False)
>>> arr.cast(pa.int8())
Segmentation fault (core dumped)
{code}


> segfault after `pa.Array.fill_null()`
> -------------------------------------
>
>                 Key: ARROW-12672
>                 URL: https://issues.apache.org/jira/browse/ARROW-12672
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Python
>    Affects Versions: 4.0.0
>            Reporter: Adam Hooper
>            Priority: Major
>
> The array returned by {{pa.Array.fill_null()}} is unusable.
> {code}
> >>> import pyarrow as pa
> >>> arr = pa.array([None], pa.bool_()).fill_null(False)
> >>> arr.cast(pa.int8())
> Segmentation fault (core dumped)
> {code}



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