eitsupi commented on PR #13877:
URL: https://github.com/apache/arrow/pull/13877#issuecomment-1216367520

   There seems to be an unexpected error ARROW-17429.
   
   ```r
   tbl <- tibble::tibble(time = c("1970-01-01T12:00:00+12:00"))
   csv_file <- tempfile()
   on.exit(unlink(csv_file))
   write.csv(tbl, csv_file, row.names = FALSE)
   
   arrow::read_csv_arrow(csv_file, col_types = "?", col_names = "x", skip = 1)
   #> # A tibble: 1 × 1
   #>   x
   #>   <dttm>
   #> 1 1970-01-01 00:00:00
   arrow::read_csv_arrow(csv_file, col_types = "c", col_names = "x", skip = 1)
   #> # A tibble: 1 × 1
   #>   x
   #>   <chr>
   #> 1 1970-01-01T12:00:00+12:00
   arrow::read_csv_arrow(csv_file, col_types = "i", col_names = "x", skip = 1)
   #> Error in as.data.frame(tab): object 'tab' not found
   arrow::read_csv_arrow(csv_file, col_types = "T", col_names = "x", skip = 1)
   #> Error in as.data.frame(tab): object 'tab' not found
   ```


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