tustvold commented on code in PR #3368:
URL: https://github.com/apache/arrow-rs/pull/3368#discussion_r1052536058
##########
arrow-csv/src/reader/mod.rs:
##########
@@ -1081,11 +1089,8 @@ impl ReaderBuilder {
if let Some(t) = self.terminator {
reader_builder.terminator(csv_core::Terminator::Any(t));
}
- let reader = RecordReader::new(
- BufReader::new(reader),
Review Comment:
This is where the "magic" occurs, this `BufReader` has been moved to only be
added to `Read` passed to `build` and crucially not to types passed to
`build_buffered`
--
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]