jorgecarleitao commented on a change in pull request #9771: URL: https://github.com/apache/arrow/pull/9771#discussion_r599033492
########## File path: rust/parquet/src/arrow/arrow_writer.rs ########## @@ -156,6 +156,16 @@ fn write_leaves( row_group_writer.close_column(col_writer)?; Ok(()) } + ArrowDataType::FixedSizeBinary(_) => { + let mut col_writer = get_col_writer(&mut row_group_writer)?; + write_leaf( + &mut col_writer, + array, + levels.pop().expect("Levels exhausted"), + )?; + row_group_writer.close_column(col_writer)?; + Ok(()) + } Review comment: I can't spot the difference between this and all cases above. Is there any? -- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org