dragosmg opened a new pull request #12353:
URL: https://github.com/apache/arrow/pull/12353
Once this PR is merged arrow queries would be able to parse dates, date
times, and periods with hour, minute, and second components correctly. For
example,
```r
df <- tibble(x = c("09-01-01", "09-01-02", "09-01-03"))
df %>%
record_batch() %>%
mutate(y = ymd(x)) %>%
collect()
```
would be equivalent of
```r
df %>%
mutate(y = lubridate::ymd(x)
```
--
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]