Dandandan commented on pull request #1342:
URL: https://github.com/apache/arrow-rs/pull/1342#issuecomment-1046092817


   > ```rust
   >     /// Create a new `Writer`
   >     pub fn build<W: Write>(self, writer: W) -> Writer<W> {
   >         let delimiter = self.delimiter.unwrap_or(b','); // looks like it's 
used
   >         let mut builder = csv_crate::WriterBuilder::new();
   >         let writer = builder.delimiter(delimiter).from_writer(writer);
   >         ...
   > ```
   
   Yes it's used in the builder, but looks to me it's not passed to the 
`Writer` eventually (and so not used when writing the CSV).


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