vvysotskyi commented on a change in pull request #1754: DRILL-7098: File 
Metadata Metastore Plugin
URL: https://github.com/apache/drill/pull/1754#discussion_r277233476
 
 

 ##########
 File path: 
metastore/metastore-api/src/main/java/org/apache/drill/metastore/TableStatisticsKind.java
 ##########
 @@ -50,7 +49,7 @@ public Long mergeStatistics(Collection<? extends 
BaseMetadata> statistics) {
     @Override
     public Long getValue(BaseMetadata metadata) {
       Long rowCount = (Long) metadata.getStatistic(this);
-      return rowCount != null ? rowCount : GroupScan.NO_COLUMN_STATS;
+      return rowCount != null ? rowCount :  Statistic.NO_COLUMN_STATS;
 
 Review comment:
   ```suggestion
         return rowCount != null ? rowCount : Statistic.NO_COLUMN_STATS;
   ```

----------------------------------------------------------------
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

Reply via email to