nealrichardson commented on code in PR #14092:
URL: https://github.com/apache/arrow/pull/14092#discussion_r968446386
##########
r/R/dplyr-arrange.R:
##########
@@ -20,7 +20,10 @@
arrange.arrow_dplyr_query <- function(.data, ..., .by_group = FALSE) {
call <- match.call()
- exprs <- quos(...)
+
+ expression_list <- expand_across(.data, quos(...))
+ exprs <- ensure_named_exprs(expression_list)
Review Comment:
Can this line be removed? I don't think arrange expressions have to have
names.
--
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]