paleolimbot commented on issue #14732:
URL: https://github.com/apache/arrow/issues/14732#issuecomment-1415921025
If you'd like to give a go at opening a PR, I believe it's something like
adding
```r
if (inherits(x$.data, "arrow_dplyr_query")) {
print(x$.data, ...)
cat("------\n")
}
```
Here:
https://github.com/apache/arrow/blob/2078af7c710d688c14313b9486b99c981550a7b7/r/R/dplyr.R#L118
...plus adding a test to tests/testthat/test-dplyr.R...something like
`expect_snapshot(print(some_table %>% filter(mpg > 25) %>% summarise(mpg =
mean(mpg))))`.
Getting set up with an Arrow development environment can take some effort
(although we're trying to make it easier). If it's useful, the command I often
use to build Arrow is
https://gist.github.com/paleolimbot/be77218201bdbd20353c084c74254824#file-dockerfile-L5
.
This will almost certainly make the 12.0.0 release in a few months if you
don't get to it!
--
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]