amoeba commented on issue #44138:
URL: https://github.com/apache/arrow/issues/44138#issuecomment-2356974059
Thanks for taking the time to file a detailed issue @matthewgson.
It looks to me like this is more of a fundamental behavior of
dplyr/tidyselect since I can reproduce this without arrow/duckdb/dbplyr:
```r
> library(dplyr)
>
> iris |>
+ select(
+ !ends_with(".Length"), !Sepal.Width) |>
+ names()
[1] "Sepal.Width" "Petal.Width" "Species" "Sepal.Length"
"Petal.Length"
```
It's not clear from the help page for `select` whether that's a bug or not
but I don't think it's something we that can be fixed in arrow.
--
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]