korlov42 commented on code in PR #4827: URL: https://github.com/apache/ignite-3/pull/4827#discussion_r1871124216
########## modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/ExecutionServiceImpl.java: ########## @@ -600,13 +589,10 @@ public void onDisappeared(ClusterNode member) { /** Returns local fragments for the query with given id. */ public List<AbstractNode<?>> localFragments(UUID queryId) { - DistributedQueryManager mgr = queryManagerMap.get(queryId); - - if (mgr == null) { - return List.of(); - } - - return mgr.localFragments(); + return queryManagerMap.entrySet().stream() Review Comment: done, thanks -- 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