AMashenkov commented on a change in pull request #9314:
URL: https://github.com/apache/ignite/pull/9314#discussion_r704169843
##########
File path:
modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsRepository.java
##########
@@ -93,127 +91,19 @@ public IgniteStatisticsRepository(
) {
this.store = store;
this.helper = helper;
- this.log = logSupplier.apply(IgniteStatisticsRepository.class);
+ log = logSupplier.apply(IgniteStatisticsRepository.class);
+ ColumnPartitionDataViewSupplier colPartDataViewSupplier = new
ColumnPartitionDataViewSupplier(store);
sysViewMgr.registerFiltrableView(STAT_PART_DATA_VIEW,
STAT_PART_DATA_VIEW_DESC,
- new StatisticsColumnPartitionDataViewWalker(),
this::columnPartitionStatisticsViewSupplier,
+ new StatisticsColumnPartitionDataViewWalker(),
colPartDataViewSupplier::columnPartitionStatisticsViewSupplier,
Function.identity());
+ ColumnLocalDataViewSupplier colLocDataViewSupplier = new
ColumnLocalDataViewSupplier(this);
Review comment:
```suggestion
ColumnLocalDataViewSupplier colLocDataViewSupplier = new
ColumnLocalDataViewSupplier(this);
```
--
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]