Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-14140: [R] skip arrow_binary/arrow_large_binary class from R me…
…tadata ``` r library(arrow, warn.conflicts = FALSE) #> See arrow_info() for available features raws <- charToRaw("bonjour") RecordBatch$create(b = Array$create(list(raws), binary()))$metadata$r #> NULL RecordBatch$create(lb = Array$create(list(raws), large_binary()))$metadata$r #> NULL RecordBatch$create(fsb = Array$create(list(raws), fixed_size_binary(7L)))$metadata$r #> NULL ``` <sup>Created on 2021-09-27 by the [reprex package](https://reprex.tidyverse.org) (v2.0.0)</sup> Closes #11240 from romainfrancois/ARROW-14140_metdata_ignore_binary_classes Authored-by: Romain Francois <romain@rstudio.com> Signed-off-by: Neal Richardson <neal.p.richardson@gmail.com>
- Loading branch information