boshek opened a new pull request, #13641:
URL: https://github.com/apache/arrow/pull/13641
This implements are pretty thin version of `unique` and some tests:
``` r
library(arrow, warn.conflicts = FALSE)
library(dplyr, warn.conflicts = FALSE)
ir_ds <- arrow_table(iris) %>%
select(Species)
unique(ir_ds)
#> # A tibble: 3 × 1
#> Species
#> <fct>
#> 1 setosa
#> 2 versicolor
#> 3 virginica
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]