korlov42 commented on a change in pull request #8590:
URL: https://github.com/apache/ignite/pull/8590#discussion_r548840957
##########
File path:
modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/CalciteQueryProcessorTest.java
##########
@@ -99,26 +99,28 @@ public void testCountWithJoin() throws Exception {
Map<Integer, RISK> mRisk = new HashMap<>(65000);
for (int i = 0; i < 65000; i++)
- mRisk.put(1, new RISK(i));
+ mRisk.put(i, new RISK(i));
RISK.putAll(mRisk);
Map<Integer, TRADE> mTrade = new HashMap<>(200);
for (int i = 0; i < 200; i++)
- mTrade.put(1, new TRADE(i));
+ mTrade.put(i, new TRADE(i));
TRADE.putAll(mTrade);
for (int i = 0; i < 80; i++)
- BATCH.put(1, new BATCH(i));
+ BATCH.put(i, new BATCH(i));
awaitPartitionMapExchange(true, true, null);
- QueryEngine engine = Commons.lookupComponent(grid(1).context(),
QueryEngine.class);
+ QueryEngine engine = Commons.lookupComponent(ignite.context(),
QueryEngine.class);
Review comment:
think it should be done under separate ticket
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]