HuaHuaY commented on code in PR #50807:
URL: https://github.com/apache/arrow/pull/50807#discussion_r3862585744
##########
cpp/src/parquet/schema.h:
##########
@@ -387,6 +387,8 @@ class PARQUET_EXPORT ColumnDescriptor {
switch (column_order().get_order()) {
case ColumnOrder::TYPE_DEFINED_ORDER:
return sort_order() != SortOrder::UNKNOWN;
+ case ColumnOrder::IEEE_754_TOTAL_ORDER:
+ return true;
Review Comment:
Although this is a public function, we have already checked the type before
reading and writing files, so I don't think we need to do any extra checks here.
--
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]