AMashenkov commented on code in PR #3175:
URL: https://github.com/apache/ignite-3/pull/3175#discussion_r1481552796
##########
modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/hints/ForceIndexHintPlannerTest.java:
##########
@@ -88,7 +90,6 @@ public void testSingleTable() throws Exception {
public void testSubquery() throws Exception {
var sql1 = "SELECT /*+ FORCE_INDEX({}) */ * FROM TBL1 t2, (SELECT *
FROM TBL1 WHERE val2='v' AND val3='v') t1 WHERE t2.val2='v'";
- assertPlan(format(sql1, ""), SCHEMA,
nodeOrAnyChild(isTableScan(TBL1)));
Review Comment:
Does it mean we shouldn't see a plan with table scan?
`assertPlan(format(sql1, ""), SCHEMA,
not(nodeOrAnyChild(isTableScan(TBL1)));`
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]