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 2019/04/24 18:13:00 UTC

[jira] [Commented] (ARROW-5208) [Python] Inconsistent resulting type during casting in pa.array() when mask is present

    [ https://issues.apache.org/jira/browse/ARROW-5208?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16825402#comment-16825402 ] 

Wes McKinney commented on ARROW-5208:
-------------------------------------

Seems reasonable. Would you like to submit a pull request?

> [Python] Inconsistent resulting type during casting in pa.array() when mask is present
> --------------------------------------------------------------------------------------
>
>                 Key: ARROW-5208
>                 URL: https://issues.apache.org/jira/browse/ARROW-5208
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Python
>    Affects Versions: 0.13.0
>            Reporter: Artem KOZHEVNIKOV
>            Priority: Major
>             Fix For: 0.14.0
>
>
> I would expect Int64Array type in all cases below :
> {code:java}
> >>> pa.array([4, None, 4, None], mask=np.array([False, True, False, True]))                                                                                  
> <pyarrow.lib.Int64Array object at 0x91fad3a98> [4, null, 4,  null ]
> >>> pa.array([4, None, 4, 'rer'], mask=np.array([False, True, False, True]))                                                                                    
> <pyarrow.lib.Int64Array object at 0x9201f23b8> [4, null, 4,  null ]
> >>> pa.array([4, None, 4, 3.], mask=np.array([False, True, False, True]))                                                                                        <pyarrow.lib.DoubleArray object at 0x91fab7638> [   4,   null,   4,   null ]{code}



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