AMashenkov commented on code in PR #6057:
URL: https://github.com/apache/ignite-3/pull/6057#discussion_r2158624697


##########
modules/sql-engine/src/testFixtures/java/org/apache/ignite/internal/sql/engine/util/QueryChecker.java:
##########
@@ -294,6 +294,8 @@ static Matcher<String> containsAnyScan(String schema, 
String tblName, String...
 
     QueryChecker returns(Object... res);
 
+    QueryChecker returnMatched(Matcher<Iterable<?>> matcher);

Review Comment:
   ```
   /** Adds validator that ensures the next row in resultset equals to the one 
represented by array. */
   QueryChecker returns(Object... row);
   
   /** Adds validator that ensures the next row in resultset satisfies the 
given matcher. */
   QueryChecker returns(Matcher<Iterable<?>> rowMatcher);
   ```



-- 
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

Reply via email to