Skip to content

Commit

Permalink
Further review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Sep 29, 2023
1 parent 44c6713 commit 10ab137
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions parquet/src/arrow/arrow_writer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,9 @@ impl ArrowColumnChunk {
///
/// // Spawn work to encode columns
/// let mut worker_iter = workers.iter_mut();
/// for (a, f) in to_write.iter().zip(&schema.fields) {
/// for c in compute_leaves(f, a).unwrap() {
/// worker_iter.next().unwrap().1.send(c).unwrap();
/// for (arr, field) in to_write.iter().zip(&schema.fields) {
/// for leaves in compute_leaves(field, arr).unwrap() {
/// worker_iter.next().unwrap().1.send(leaves).unwrap();
/// }
/// }
///
Expand Down

0 comments on commit 10ab137

Please sign in to comment.