maksaska commented on code in PR #12017: URL: https://github.com/apache/ignite/pull/12017#discussion_r2106163938
########## modules/compatibility/src/test/java/org/apache/ignite/compatibility/clients/JdbcThinCompatibilityTest.java: ########## @@ -53,10 +53,10 @@ private static void executeSql(IgniteEx igniteEx, String sql) { @Override protected void beforeTest() throws Exception { super.beforeTest(); - int majorJavaVer = U.majorJavaVersion(U.jdkVersion()); + int majorJavaVer = CommonUtils.majorJavaVersion(CommonUtils.jdkVersion()); if (majorJavaVer > 11) { - Assume.assumeTrue("Skipped on jdk " + U.jdkVersion(), + Assume.assumeTrue("Skipped on jdk " + CommonUtils.jdkVersion(), Review Comment: Fixed ########## modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/IndexTypesCompatibilityTest.java: ########## @@ -110,10 +110,10 @@ public static Collection<Object[]> runConfig() { /** */ @Test public void testQueryOldIndex() throws Exception { - int majorJavaVer = U.majorJavaVersion(U.jdkVersion()); + int majorJavaVer = CommonUtils.majorJavaVersion(CommonUtils.jdkVersion()); Review Comment: Fixed -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org