kszucs commented on code in PR #9450:
URL: https://github.com/apache/arrow-rs/pull/9450#discussion_r2956092357
##########
parquet/src/arrow/arrow_writer/mod.rs:
##########
@@ -958,7 +1009,26 @@ impl ArrowRowGroupWriter {
let mut writers = self.writers.iter_mut();
for (field, column) in
self.schema.fields().iter().zip(batch.columns()) {
for leaf in compute_leaves(field.as_ref(), column)? {
- writers.next().unwrap().write(&leaf)?
+ writers.next().unwrap().write(&leaf)?;
+ }
+ }
+ Ok(())
+ }
+
+ fn write_with_chunkers(
Review Comment:
You tell me :)
I merely tried to avoid any breaking changes.
--
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]