eitsupi commented on issue #13667:
URL: https://github.com/apache/arrow/issues/13667#issuecomment-1192649474

   You can use the `col_types` option of the `arrow::read_csv_arrow()` function.
   Like this.
   
   ```r
   mtcars |> readr::write_csv("test.csv")
   ds <- arrow::open_dataset("test.csv", format = "csv", col_types = 
arrow::schema("cyl" = arrow::utf8()))
   ```


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