universalmind303 opened a new issue, #8824:
URL: https://github.com/apache/arrow-datafusion/issues/8824

   ### Is your feature request related to a problem or challenge?
   
   Some tools generate CSVs that contain some extra data at the top or bottom, 
such as bank statement exports
   
   ```csv
   "Account Name : REDACTED"
   "Account Number : REDACTED"
   "Date Range : 01/01/2023-12/31/2023"
   Transaction Date,Posted Date,Category,Debit
   2023-01-01,2023-01-01,Payment/Credit,100.0
   ```
   
   I'd like a way to skip the first `n` rows 
   
   
   ### Describe the solution you'd like
   
   add a new option to `CsvFormat` for skipping rows
   
   ```rust
   CsvFormat::default().with_skip_rows(2)
   ```
   
   ### Describe alternatives you've considered
   
   none that I can think of. 
   
   ### Additional context
   
   https://github.com/GlareDB/glaredb/issues/2035


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