romainfrancois edited a comment on pull request #10445:
URL: https://github.com/apache/arrow/pull/10445#issuecomment-863903044


   ``` r
   library(arrow, warn.conflicts = FALSE)
   #> See arrow_info() for available features
   
   c_int <- ChunkedArray$create(1:1000)
   c_dbl <- ChunkedArray$create(as.numeric(1:1000))
   c_int$num_chunks
   #> [1] 1
   c_dbl$num_chunks
   #> [1] 1
   .Internal(inspect(as.vector(c_int)))
   #> @7fc1314ce2a8 13 INTSXP g0c0 [REF(65535)] std::shared_ptr<arrow::Array, 
int32, NONULL> (len=1000, ptr=0x7fc1274a0408)
   .Internal(inspect(as.vector(c_dbl)))
   #> @7fc131528a90 14 REALSXP g0c0 [REF(65535)] std::shared_ptr<arrow::Array, 
double, NONULL> (len=1000, ptr=0x7fc12b2b5178)
   ```
   
   <sup>Created on 2021-06-18 by the [reprex 
package](https://reprex.tidyverse.org) (v2.0.0.9000)</sup>
   
   I think I'll deal with this 
https://issues.apache.org/jira/browse/ARROW-13114 here as well, and then do a 
follow up for using RTasks (i.e. 
https://issues.apache.org/jira/browse/ARROW-13113). 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to