alamb commented on code in PR #9450:
URL: https://github.com/apache/arrow-rs/pull/9450#discussion_r2956262827
##########
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:
I can tinker as a follow on PR -- I don't think any changes are needed here
--
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]