[
https://issues.apache.org/jira/browse/ARROW-3795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Wes McKinney resolved ARROW-3795.
---------------------------------
Resolution: Fixed
Fix Version/s: 0.12.0
Issue resolved by pull request 2982
[https://github.com/apache/arrow/pull/2982]
> [R] Support for retrieving NAs from INT64 arrays
> ------------------------------------------------
>
> Key: ARROW-3795
> URL: https://issues.apache.org/jira/browse/ARROW-3795
> Project: Apache Arrow
> Issue Type: Improvement
> Components: R
> Reporter: Javier Luraschi
> Priority: Major
> Labels: pull-request-available
> Fix For: 0.12.0
>
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> I have a repro using sparklyr but likely to be possible to repro this through
> c++ bindings:
>
>
> {code:java}
> library(sparklyr)
> library(arrow)
> sc <- spark_connect(mater = "local")
> DBI::dbGetQuery(sc, "SELECT cast(NULL as bigint)")
> {code}
> Actual:
>
> {code:java}
> CAST(NULL AS BIGINT)
> 1 -4332462841530417152
> {code}
>
> Expected:
> {code:java}
> CAST(NULL AS BIGINT)
> 1 NA
> {code}
>
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)