eitsupi opened a new pull request, #14413: URL: https://github.com/apache/arrow/pull/14413
Automatic guessing works to timestamp with timezone (of course, it's automatic, so we don't know which type it actually will be). ``` r tf <- tempfile() write.csv(data.frame(x = "1970-01-01T12:00:00+12:00"), file = tf, row.names = FALSE) arrow::read_csv_arrow(tf, col_types = "?", skip = 1, col_names = "x") #> # A tibble: 1 × 1 #> x #> <dttm> #> 1 1970-01-01 00:00:00 ``` <sup>Created on 2022-10-14 with [reprex v2.0.2](https://reprex.tidyverse.org)</sup> -- 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]
