Copilot commented on code in PR #7172: URL: https://github.com/apache/ignite-3/pull/7172#discussion_r2597672265
########## modules/jdbc/src/test/java/org/apache/ignite/internal/jdbc/JdbcResultSetSelfTest.java: ########## @@ -19,11 +19,14 @@ import static org.apache.ignite.internal.jdbc.JdbcUtils.createObjectListResultSet; import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.any; Review Comment: The import `org.hamcrest.Matchers.any` is unused. Line 3671 uses `assertThat(rs.getType(), any(Integer.class))` but `any()` is a Hamcrest matcher that matches any object and doesn't require an explicit import for the static method. This appears to be a mistake - the assertion should likely use a different matcher or the import should be removed. ```suggestion ``` -- 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]
