assignUser commented on issue #39754:
URL: https://github.com/apache/arrow/issues/39754#issuecomment-1905284866

   Hey, thanks for the report.
   
   I can't reproduce with the same R and arrow version  though I am on linux so 
it might be an issue with tzdata on windows... do other conversions work 
correctly?
   ``` r
   library(arrow)
   #> 
   #> Attaching package: 'arrow'
   #> The following object is masked from 'package:utils':
   #> 
   #>     timestamp
   library(lubridate)
   #> 
   #> Attaching package: 'lubridate'
   #> The following object is masked from 'package:arrow':
   #> 
   #>     duration
   #> The following objects are masked from 'package:base':
   #> 
   #>     date, intersect, setdiff, union
   library(dplyr)
   #> 
   #> Attaching package: 'dplyr'
   #> The following objects are masked from 'package:stats':
   #> 
   #>     filter, lag
   #> The following objects are masked from 'package:base':
   #> 
   #>     intersect, setdiff, setequal, union
   
   arrow_table(date = "12JAN2004") %>%
     mutate(date = dmy(date)) %>% 
     collect()
   #> # A tibble: 1 × 1
   #>   date      
   #>   <date>    
   #> 1 2004-01-12
   
   arrow_table(date = "12JAN2004") %>% 
     collect() %>% 
     mutate(date = dmy(date))
   #> # A tibble: 1 × 1
   #>   date      
   #>   <date>    
   #> 1 2004-01-12
   ```
   


-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to