AMashenkov commented on code in PR #3175:
URL: https://github.com/apache/ignite-3/pull/3175#discussion_r1481549263
##########
modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/hints/ForceIndexHintPlannerTest.java:
##########
@@ -70,6 +70,8 @@ public void testWrongIndexName() throws Exception {
@Test
public void testSingleTable() throws Exception {
+ assertPlan("SELECT /*+ FORCE_INDEX() */ * FROM TBL2 WHERE val2 = 'v'",
SCHEMA, nodeOrAnyChild(isIndexScan(TBL2, "IDX_VAL2")));
Review Comment:
```suggestion
assertPlan(format(sql1, ""), SCHEMA, TBL1, "IDX_VAL2"));
```
--
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]