eitsupi opened a new pull request, #34340: URL: https://github.com/apache/arrow/pull/34340
### Rationale for this change The `skip_rows_after_names` option implemented in C++ was not exposed to R. ### What changes are included in this PR? The new `skip_rows_after_names` option is now available for the `read_csv_arrow` function. ``` r > csv <- "a,b\n1,2\n3,4" > arrow::read_csv_arrow(I(csv), read_options = list(skip_rows_after_names = 1)) # A tibble: 1 × 2 a b <int> <int> 1 3 4 ``` <sup>Created on 2023-02-24 with [reprex v2.0.2](https://reprex.tidyverse.org)</sup> ### Are these changes tested? Tests are added for the new option. ### Are there any user-facing changes? The new `skip_rows_after_names` option can be used. -- 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