rok commented on code in PR #7818: URL: https://github.com/apache/arrow-rs/pull/7818#discussion_r2181042123
########## parquet/src/arrow/arrow_writer/mod.rs: ########## @@ -755,8 +758,9 @@ impl ArrowColumnWriter { } /// Encodes [`RecordBatch`] to a parquet row group -struct ArrowRowGroupWriter { - writers: Vec<ArrowColumnWriter>, +pub struct ArrowRowGroupWriter { + /// [`ArrowColumnWriter`] for each column in a row group + pub writers: Vec<ArrowColumnWriter>, Review Comment: Good point. Going with `into_column_writers`. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org