ianmcook commented on a change in pull request #9798: URL: https://github.com/apache/arrow/pull/9798#discussion_r601022136
########## 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: After thinking about this more, direct reuse of `dplyr:::relocate.data.frame` (without copying) is an intriguing possibility but it would introduce a dependency on internal implementation details of dplyr that I think we ought to avoid. The MIT license (under which dplyr is licensed) permits the kind of code reuse/adaptation I did here (with attribution, which I will add in a comment). -- 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