askoa commented on code in PR #3103:
URL: https://github.com/apache/arrow-rs/pull/3103#discussion_r1022826315
##########
parquet/src/file/metadata.rs:
##########
@@ -303,9 +309,18 @@ 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 = sorting_columns.iter().map(Into::into).collect();
Review Comment:
No longer required as I removed SortingColumnMetaData.
--
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]