korlov42 commented on code in PR #5398:
URL: https://github.com/apache/ignite-3/pull/5398#discussion_r1995462945


##########
modules/sql-engine/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItJoinOrderTest.java:
##########
@@ -175,6 +176,58 @@ void test(Query query) {
         checker.check();
     }
 
+    @ParameterizedTest
+    @MethodSource("joinTypesWithRulesToDisable")
+    @SuppressWarnings("ConcatenationWithEmptyString")
+    void joinWithProjectionOnTopReturnsValidaResults(JoinType joinType, 
List<String> rulesToDisable) {
+        String queryToAcquireExpectedResults = format("" 
+                + "SELECT p.*, d.* " 
+                + "  FROM Products p " 
+                + "    {} JOIN Discounts d ON p.ProductID = d.ProductID" 
+                + "  JOIN Reviews r ON p.ProductID = r.ProductID" 
+                + " WHERE r.Rating > 2", joinType
+        );
+
+        String queryToValidate = format(""
+                + "SELECT /*+ enforce_join_order, disable_rule({}) */ p.*, d.* 
"
+                + "  FROM Discounts d "
+                + "    {} JOIN Products p ON p.ProductID = d.ProductID"
+                + "  JOIN Reviews r ON p.ProductID = r.ProductID"
+                + " WHERE r.Rating > 2",
+                '\'' + String.join("', '", rulesToDisable) + '\'',
+                joinType.swap()
+        );
+
+        List<List<Object>> expectedResult = sql(queryToAcquireExpectedResults);
+
+        Assumptions.assumeFalse(expectedResult.isEmpty());

Review Comment:
   I'm not sure it is a good decision, but the reason is data for tables is 
generated randomly. Therefore, there is chance that products with discount 
won't have any reviews. The chance is extremely low, but not zero. 
   
   Perhaps, it would be better to replace assumption with assertion, and deal 
with once-a-year test flakiness... So wdyt? 



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