mapleFU commented on code in PR #49218:
URL: https://github.com/apache/arrow/pull/49218#discussion_r2791135240
##########
cpp/src/parquet/arrow/schema.cc:
##########
@@ -991,6 +991,16 @@
std::function<std::shared_ptr<::arrow::DataType>(FieldVector)> GetNestedFactory(
};
}
break;
+ case ::arrow::Type::MAP:
+ if (origin_type.id() == ::arrow::Type::MAP) {
+ const bool keys_sorted =
+ checked_cast<const ::arrow::MapType&>(origin_type).keys_sorted();
Review Comment:
According to `MapToSchemaField`, is `keys_sorted` always false?
--
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]