Copilot commented on code in PR #51313:
URL: https://github.com/apache/arrow/pull/51313#discussion_r4027278978
##########
r/tests/testthat/test-dplyr-eval.R:
##########
@@ -59,3 +59,28 @@ test_that("try_arrow_dplyr/abandon_ship adds the right
message about collect()",
expect_snapshot(tester(ds, i), error = TRUE)
}
})
+
+test_that("dplyr verbs error clearly on empty column names", {
Review Comment:
This test calls `collect()` through `compare_dplyr_binding()` on an Arrow
table, so it requires the Acero feature. Unlike the other dplyr test files (for
example `r/tests/testthat/test-dplyr-filter.R:21`), this file does not skip
when Acero is unavailable, so a no-Acero build will fail this test instead of
skipping it. Add `skip_if_not_available("acero")` at the start of the test.
--
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]