nealrichardson opened a new pull request #11338: URL: https://github.com/apache/arrow/pull/11338
https://github.com/r-lib/rlang/pull/1277 changed the behavior of `as_label` when the call contains operators. On current release of rlang, we see: ``` > as_label(as_quosure(~nchar(chr, type = "bytes", allowNA = TRUE) == 1)) [1] "nchar(chr, type = \"bytes\", allowNA = TRUE) == 1" ``` On dev rlang, we get ``` > as_label(as_quosure(~nchar(chr, type = "bytes", allowNA = TRUE) == 1)) [1] "... == 1" ``` This causes a test failure, which we were told that we needed to address in advance of their release. According to the tests added in that rlang PR, this is the intended behavior of `as_label` now, but it doesn't seem to be what we want. We can recover the behavior we're expecting by using `deparse()`. -- 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]
