You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/05/18 01:51:52 UTC

[GitHub] [arrow-rs] kazuk opened a new issue #315: add with_escape for csv::ReaderBuilder

kazuk opened a new issue #315:
URL: https://github.com/apache/arrow-rs/issues/315


   **Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
   
   Allow read non-standard CSV.
   
   background: I plan to read external CSV source, that have non-standard escape rule.
   
   **Describe the solution you'd like**
   
   - add `escape: Option<u8>` field to ReaderBuilder.
   - add `pub fn with_escape( mut self, escape: u8 ) -> Self` method to ReaderBuilder.
   - optional with_quote for quote setting
   - add `pub(crate) fn from_builder( builder: ReaderBuilder ) -> Self` to Reader 
     and handle builder options
   - change `pub fn build<R: Read + Seek>(self, mut reader: R) -> Result<Reader<R>>` on ReaderBuilder
     call `from_builder`
   
   **Describe alternatives you've considered**
   
   add `pub fn from_csv_reader( csv_reader: crate_csv::Reader ) ->Self` to Reader
     use custom builded csv_reader 
   


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

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



[GitHub] [arrow-rs] alamb closed issue #315: add with_escape for csv::ReaderBuilder

Posted by GitBox <gi...@apache.org>.
alamb closed issue #315:
URL: https://github.com/apache/arrow-rs/issues/315


   


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

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