anandheritage commented on code in PR #15844: URL: https://github.com/apache/pinot/pull/15844#discussion_r2103979545
########## pinot-core/src/main/java/org/apache/pinot/core/data/table/Key.java: ########## @@ -63,4 +63,14 @@ public int hashCode() { public String toString() { return Arrays.toString(_values); } + @Override + public int compareTo(Key other) { + for (int i = 0; i < _values.length; i++) { + int cmp = ((Comparable<Object>) _values[i]).compareTo(other._values[i]); Review Comment: This is taken care too -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org