Jackie-Jiang commented on code in PR #15259: URL: https://github.com/apache/pinot/pull/15259#discussion_r2004165568
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/H3Utils.java: ########## @@ -42,13 +43,19 @@ private H3Utils() { } public static final H3CoreV3 H3_CORE; + public static final H3Core H3_CORE_INSTANCE; static { try { H3_CORE = H3CoreV3.newInstance(); } catch (IOException e) { throw new RuntimeException("Failed to instantiate H3 V3 instance", e); } + try { + H3_CORE_INSTANCE = H3Core.newInstance(); Review Comment: Created #15313 to migrate usage to v4 -- 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