eitsupi commented on code in PR #14387: URL: https://github.com/apache/arrow/pull/14387#discussion_r994613502
########## r/R/arrow-package.R: ########## @@ -38,21 +38,24 @@ supported_dplyr_methods <- list( select = NULL, filter = NULL, collect = NULL, - summarise = NULL, + summarise = c( + "window functions not currently supported;", + 'arguments `.drop = FALSE` and `.groups = "rowwise" not supported' + ), group_by = NULL, groups = NULL, group_vars = NULL, group_by_drop_default = NULL, ungroup = NULL, - mutate = NULL, + mutate = "window functions not currently supported", Review Comment: For users, it may be easier to explain that "mutate cannot be used after being grouped". -- 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]
