paleolimbot commented on PR #37565:
URL: https://github.com/apache/arrow/pull/37565#issuecomment-1719994248
I don't think this PR actually solves the original issue (so I made a new
issue since this is still a good change that may have caused crashes in other
situations).
That said, a reprex to create the original crash is:
```
library(arrow)
library(dplyr)
# once...takes some time
open_dataset("s3://voltrondata-labs-datasets/nyc-taxi") |>
filter(year %in% 2012:2021) |>
write_dataset("nyc-taxi", partitioning = c("year", "month"))
# should cause the crash
for(i in 1:100){
open_dataset("~/data/nyc-taxi/") |>
head()
}
```
--
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]