askoa commented on code in PR #3103: URL: https://github.com/apache/arrow-rs/pull/3103#discussion_r1021420194
########## parquet/src/file/metadata.rs: ########## @@ -303,9 +308,19 @@ impl RowGroupMetaData { let cc = ColumnChunkMetaData::from_thrift(d.clone(), c)?; columns.push(cc); } + let sorting_columns: Option<Vec<SortingColumnMetaData>> = match rg.sorting_columns + { + Some(sorting_columns) => { + let result: Vec<SortingColumnMetaData> = Review Comment: Done. -- 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