thisisnic opened a new issue, #33708:
URL: https://github.com/apache/arrow/issues/33708

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   ``` r
   library(arrow)
   df <- data.frame(time = "2023-01-16 19:47:57")
   dst_dir <- tempfile()
   dir.create(dst_dir)
   dst_file <- file.path(dst_dir, "data.csv")
   write.table(df, sep = ",", dst_file, row.names = FALSE, quote = FALSE)
   
   read_csv_arrow(dst_file, timestamp_parsers = c(TimestampParser$create(format 
= "%m-%d-%y")))
   #>                  time
   #> 1 2023-01-16 19:47:57
   ```
   
   I'm not sure how exactly it's supposed to work, but it appears not to do 
anything, and neither the docs nor error messages are enough to tell me what 
I'm supposed to be doing/seeing here.
   
   
   ### Component(s)
   
   R


-- 
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]

Reply via email to