This is an automated email from the ASF dual-hosted git repository. amashenkov pushed a commit to branch ignite-26029 in repository https://gitbox.apache.org/repos/asf/ignite-3.git
commit 469d915ea6efaf5e35623429d50616b50c2dfe91 Author: amashenkov <[email protected]> AuthorDate: Thu Aug 7 14:52:15 2025 +0300 wip --- .../ignite/internal/sql/engine/util/QueryChecker.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/sql-engine/src/testFixtures/java/org/apache/ignite/internal/sql/engine/util/QueryChecker.java b/modules/sql-engine/src/testFixtures/java/org/apache/ignite/internal/sql/engine/util/QueryChecker.java index d8cdf39a966..14dc865860f 100644 --- a/modules/sql-engine/src/testFixtures/java/org/apache/ignite/internal/sql/engine/util/QueryChecker.java +++ b/modules/sql-engine/src/testFixtures/java/org/apache/ignite/internal/sql/engine/util/QueryChecker.java @@ -106,7 +106,8 @@ public interface QueryChecker { * @return Matcher. */ static Matcher<String> containsIndexScan(String schema, String tblName) { - return matchesOnce("IndexScan.*?table: " + QualifiedName.of(schema, tblName).toCanonicalForm()); + return matchesOnce("IndexScan.*?table: " + QualifiedName.of(schema, tblName).toCanonicalForm() + + ".*?searchBounds: "); } /** @@ -119,21 +120,21 @@ public interface QueryChecker { */ static Matcher<String> containsIndexScan(String schema, String tblName, String idxName) { return matchesOnce("IndexScan.*?table: " + QualifiedName.of(schema, tblName).toCanonicalForm() - + ".*?index: " + idxName); + + ".*?index: " + idxName + + ".*?searchBounds: "); } /** - * Ignite index scan matcher which checks for the presence of search bounds. + * Ignite index scan matcher which ignores search bounds. * * @param schema Schema name. * @param tblName Table name. * @param idxName Index name. * @return Matcher. */ - static Matcher<String> containsIndexScanWithAnySearchBounds(String schema, String tblName, String idxName) { + static Matcher<String> containsIndexScanIgnoreSearchBounds(String schema, String tblName, String idxName) { return matchesOnce("IndexScan.*?table: " + QualifiedName.of(schema, tblName).toCanonicalForm() - + ".*?index: " + idxName - + ".*?searchBounds: "); + + ".*?index: " + idxName); } /**
