[GitHub] [arrow] romainfrancois commented on pull request #7514: ARROW-6235: [R] Implement conversion from arrow::BinaryArray to R character vector

2020-06-26 Thread GitBox


romainfrancois commented on pull request #7514:
URL: https://github.com/apache/arrow/pull/7514#issuecomment-650204663


   Added support for LargeList: 
   
   ``` r
   library(arrow, warn.conflicts = FALSE)
   
   a <- Array$create(list(integer()), type = large_list_of(int32()))
   a
   #> LargeListArray
   #> >
   #> [
   #>   []
   #> ]
   a$as_vector()
   #> [1]>
   #> [[1]]
   #> integer(0)
   ```
   
   Created on 2020-06-26 by the [reprex 
package](https://reprex.tidyverse.org) (v0.3.0.9001)



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




[GitHub] [arrow] romainfrancois commented on pull request #7514: ARROW-6235: [R] Implement conversion from arrow::BinaryArray to R character vector

2020-06-26 Thread GitBox


romainfrancois commented on pull request #7514:
URL: https://github.com/apache/arrow/pull/7514#issuecomment-650122091


   Also deals with LargeBinary now, e.g. 
https://issues.apache.org/jira/browse/ARROW-6543
   
   ``` r
   library(arrow, warn.conflicts = FALSE)
   
   a <- Array$create(list(raw()), type = large_binary())
   a
   #> Array
   #> 
   #> [
   #>   
   #> ]
   a$as_vector()
   #> [1]>
   #> [[1]]
   #> raw(0)
   ```
   
   Created on 2020-06-26 by the [reprex 
package](https://reprex.tidyverse.org) (v0.3.0.9001)



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




[GitHub] [arrow] romainfrancois commented on pull request #7514: ARROW-6235: [R] Implement conversion from arrow::BinaryArray to R character vector

2020-06-26 Thread GitBox


romainfrancois commented on pull request #7514:
URL: https://github.com/apache/arrow/pull/7514#issuecomment-650002855


   @wesm I don't know what you mean by the `BitBlockCounter` treatment. 



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