You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Wes McKinney (JIRA)" <ji...@apache.org> on 2018/09/18 13:39:00 UTC

[jira] [Updated] (ARROW-2854) [C++/Python] Casting float NaN to int should raise an error on safe cast

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

Wes McKinney updated ARROW-2854:
--------------------------------
    Fix Version/s:     (was: 0.11.0)
                   0.12.0

> [C++/Python] Casting float NaN to int should raise an error on safe cast
> ------------------------------------------------------------------------
>
>                 Key: ARROW-2854
>                 URL: https://issues.apache.org/jira/browse/ARROW-2854
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: C++, Python
>    Affects Versions: 0.9.0
>            Reporter: Uwe L. Korn
>            Priority: Major
>             Fix For: 0.12.0
>
>
> Currently the following code works:
> {code}
> pa.array([np.nan, 1.]).cast(pa.int64())
> {code}
> It produces:
> {code}
> <pyarrow.lib.Int64Array object at 0x111ca6778>
> [
>   -9223372036854775808,
>   1
> ]
> {code}
> The expected behaviour should be that it raises.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)