ianmcook commented on a change in pull request #9798: URL: https://github.com/apache/arrow/pull/9798#discussion_r602531096
########## File path: r/tests/testthat/test-dplyr.R ########## @@ -156,6 +156,21 @@ test_that("select/rename", { ) }) +test_that("select/rename with selection helpers", { + + # TODO: add some passing tests here + + expect_error( + expect_dplyr_equal( + input %>% + select(where(is.numeric)) %>% Review comment: It's both. In our `select()` and `rename()` methods, we're using the "questioning-stage" rlang functions `vars_select()` and `vars_rename()` and in those it fails on `where()`. In the `relocate()` method I added, it fails to find the column types. -- 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