eitsupi commented on PR #14905: URL: https://github.com/apache/arrow/pull/14905#issuecomment-1346430635
> Is there something that the example is testing that wasn't covered by the test that I added that I missed? I thought an example of defining a new column in `group_by` would that case. It seems quite surprising that both `value` and `"foo"` columns are generated in the following example. > ```r > library(arrow, warn.conflicts = FALSE) > library(dplyr, warn.conflicts = FALSE) > > mtcars |> > arrow_table() |> > select(mpg, cyl) |> > group_by(mpg, cyl) |> > group_by(cyl, value = "foo") |> > collect() > ``` -- 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]
