nealrichardson commented on a change in pull request #9798: URL: https://github.com/apache/arrow/pull/9798#discussion_r600910173
########## File path: r/R/dplyr.R ########## @@ -216,6 +215,52 @@ column_select <- function(.data, ..., .FUN = vars_select) { .data } +relocate.arrow_dplyr_query <- function(.data, ..., .before = NULL, .after = NULL) { Review comment: Ok. I did also test out calling `dplyr:::relocate.data.frame(.data$selected_columns, ...)` and that works except for the one `ncol()` reference (interestingly, patching that to be `length()` does mean you can just reuse the function, and `length()` also happens to work on `data.frame`, so maybe that's the angle to take). -- 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