xtern commented on code in PR #6057: URL: https://github.com/apache/ignite-3/pull/6057#discussion_r2163292261
########## modules/sql-engine/src/testFixtures/java/org/apache/ignite/internal/sql/engine/util/QueryChecker.java: ########## @@ -292,8 +292,12 @@ static Matcher<String> containsAnyScan(String schema, String tblName, String... QueryChecker disableRules(String... rules); + /** Adds validator that ensures the next row in resultset equals to the one represented by array. */ QueryChecker returns(Object... res); + /** Adds validator that ensures the next row in resultset satisfies the given matcher. */ + QueryChecker returns(Matcher<Iterable<?>> matcher); Review Comment: ```suggestion QueryChecker results(Matcher<List<List...> matcher); ``` -- 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