AMashenkov commented on code in PR #6593:
URL: https://github.com/apache/ignite-3/pull/6593#discussion_r2362945918
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/prepare/PrepareServiceImpl.java:
##########
@@ -767,6 +887,43 @@ private static CacheKey
createCacheKeyFromParameterMetadata(ParsedResult parsedR
return new CacheKey(catalogVersion, ctx.schemaName(),
parsedResult.normalizedQuery(), distributed, paramTypes);
}
+ private static Set<Integer> resolveSources(IgniteRel rel) {
+ Set<Integer> tables = new HashSet<>();
Review Comment:
```suggestion
IntSet tables = new IntOpenHashSet<>();
```
--
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]