gortiz commented on code in PR #10757: URL: https://github.com/apache/pinot/pull/10757#discussion_r1192127114
########## pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/index/reader/H3IndexResolution.java: ########## @@ -73,4 +74,21 @@ public List<Integer> getResolutions() { public int getLowestResolution() { return Integer.numberOfTrailingZeros(_resolutions); } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + H3IndexResolution that = (H3IndexResolution) o; Review Comment: You are right -- 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