PiotrSrebrny commented on code in PR #8586:
URL: https://github.com/apache/arrow-rs/pull/8586#discussion_r2420423076
##########
parquet/src/arrow/arrow_writer/mod.rs:
##########
@@ -348,6 +348,11 @@ impl<W: Write + Send> ArrowWriter<W> {
self.writer.write_all(buf)
}
+ /// Flushes underlying writer
+ pub fn sync(&mut self) -> std::io::Result<()> {
Review Comment:
Hmm, there is no `inner_writer()`. However, `ArrowWriter::inner().flush()`
will flush the user provided writer bypassing `BufWriter`, which does not help
as data is stucked in `BufWriter`.
--
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]