vvysotskyi commented on a change in pull request #1754: DRILL-7098: File
Metadata Metastore Plugin
URL: https://github.com/apache/drill/pull/1754#discussion_r276312361
##########
File path:
exec/java-exec/src/main/java/org/apache/drill/exec/expr/IsPredicate.java
##########
@@ -76,7 +76,7 @@ static boolean isNullOrEmpty(ColumnStatistics stat) {
|| !stat.containsStatistic(ColumnStatisticsKind.MIN_VALUE)
|| !stat.containsStatistic(ColumnStatisticsKind.MAX_VALUE)
|| !stat.containsStatistic(ColumnStatisticsKind.NULLS_COUNT)
- || (long) stat.getStatistic(ColumnStatisticsKind.NULLS_COUNT) ==
GroupScan.NO_COLUMN_STATS;
+ || (long) stat.getStatistic(ColumnStatisticsKind.NULLS_COUNT) ==
Statistic.NO_COLUMN_STATS;
Review comment:
Looks like there are some extra spaces before `Statistic` interface here and
in other places were added. Could you please remove them?
----------------------------------------------------------------
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]
With regards,
Apache Git Services