AMashenkov commented on a change in pull request #9423:
URL: https://github.com/apache/ignite/pull/9423#discussion_r711984546
##########
File path:
modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsRepository.java
##########
@@ -375,6 +292,15 @@ public ObjectStatisticsImpl
getLocalStatistics(StatisticsKey key) {
return locStats.get(key);
}
+ /**
+ * Get all local statistics. Return internal map without copying.
+ *
+ * @return Local (for current node) object statistics.
+ */
+ public Map<StatisticsKey, ObjectStatisticsImpl> getAllLocalStatisticsInt()
{
Review comment:
```suggestion
public Map<StatisticsKey, ObjectStatisticsImpl> localStatisticsMap() {
```
--
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]