danny0405 commented on code in PR #13526:
URL: https://github.com/apache/hudi/pull/13526#discussion_r2227070876
##########
hudi-common/src/main/java/org/apache/hudi/common/engine/HoodieReaderContext.java:
##########
@@ -479,6 +483,15 @@ public final UnaryOperator<T> projectRecord(Schema from,
Schema to) {
return projectRecord(from, to, Collections.emptyMap());
}
+ /**
+ * Converts the ordering values to the specific engine type.
+ */
+ public final Comparable convertOrderingValueToEngineType(Comparable value) {
+ return value instanceof OrderingValue
Review Comment:
This is by design, the single field ordering value cover 90% use cases and I
want to keep it simple and efficient.
--
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]