This is an automated email from the ASF dual-hosted git repository.

alexpl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new bebb4d805ef IGNITE-27915 SQL Calcite: Ignore flaky 
AggregatePlannerTest.colocated[Algorithm = HASH] (#12773)
bebb4d805ef is described below

commit bebb4d805ef2cc0dcf04544ccd921f0b1421e9c0
Author: Aleksey Plekhanov <[email protected]>
AuthorDate: Fri Feb 20 10:50:59 2026 +0300

    IGNITE-27915 SQL Calcite: Ignore flaky 
AggregatePlannerTest.colocated[Algorithm = HASH] (#12773)
---
 .../processors/query/calcite/planner/AggregatePlannerTest.java        | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/AggregatePlannerTest.java
 
b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/AggregatePlannerTest.java
index cd2ef4d8f91..19395f014c4 100644
--- 
a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/AggregatePlannerTest.java
+++ 
b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/AggregatePlannerTest.java
@@ -440,6 +440,10 @@ public class AggregatePlannerTest extends 
AbstractAggregatePlannerTest {
             .and(hasDistribution(IgniteDistributions.affinity(0, null, 
"hash")))),
             algo.rulesToDisable);
 
+        // TODO: https://issues.apache.org/jira/browse/IGNITE-16334 Eventually 
planner skips optimal join plan.
+        if (algo == AggregateAlgorithm.HASH)
+            return;
+
         sql = "SELECT dept.deptid, agg.cnt " +
             "FROM dept " +
             "JOIN (SELECT deptid, COUNT(*) AS cnt FROM emp GROUP BY deptid) AS 
agg ON dept.deptid = agg.deptid";

Reply via email to