Uh oh!
There was an error while loading. Please reload this page.
MINOR: [R] Import the missing rlang::quo function - #14091
Conversation
nealrichardson
commented
Sep 15, 2022
It sounds like you've hit a case that's not covered in the test suite? Can you add a test that is fixed by this change? |
eitsupi
commented
Sep 17, 2022
The reason this error does not occur in the current test is that this error does not occur when dplyr is loaded. reprex on 02b24f7 fn<- \() mtcars|>arrow::arrow_table() |>dplyr::mutate(dplyr::across(starts_with("c"), as.character)) |> head() |>dplyr::collect()
fn()
#> Error in quo(!!call2(.x, sym(.y))): could not find function "quo"
library(dplyr, warn.conflicts=FALSE)
fn()
#> mpg cyl disp hp drat wt qsec vs am gear carb#> 1 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4#> 2 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4#> 3 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1#> 4 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1#> 5 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2#> 6 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1Created on 2022-09-17 with reprex v2.0.2 |
Signed-off-by: SHIMA Tatsuya <ts1s1andn@gmail.com>
90245ed to
f29cf06Comparenealrichardson
commented
Sep 20, 2022
Ah ok, got it. I just rebased, will merge when CI passes. Thanks for catching this. |
ursabot
commented
Sep 28, 2022
Benchmark runs are scheduled for baseline = 7a3d801 and contender = 7a56846. 7a56846 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
The
rlang::quofunction used in lines added in PR #13786 (d5f80cb) but not imported.