Github user jatin9896 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1629#discussion_r157711859
--- Diff:
hadoop/src/main/java/org/apache/carbondata/hadoop/api/CarbonTableInputFormat.java
---
@@ -804,7 +804,7 @@ public QueryModel getQueryModel(InputSplit inputSplit,
TaskAttemptContext taskAt
Expression filter = getFilterPredicates(configuration);
boolean[] isFilterDimensions = new
boolean[carbonTable.getDimensionOrdinalMax()];
boolean[] isFilterMeasures =
- new
boolean[carbonTable.getNumberOfMeasures(carbonTable.getTableName())];
--- End diff --
getNumberOfMeasures doesn't include column count which was dropped but it
exists in measure list with invisible true whereas the getAllmeasures also
include the recent dropped column as well.
---