Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2704#discussion_r217019741
--- Diff:
core/src/main/java/org/apache/carbondata/core/scan/executor/impl/AbstractQueryExecutor.java
---
@@ -476,7 +476,11 @@ private BlockExecutionInfo
getBlockExecutionInfoForBlock(QueryModel queryModel,
blockExecutionInfo
.setTotalNumberDimensionToRead(
segmentProperties.getDimensionOrdinalToChunkMapping().size());
- blockExecutionInfo.setPrefetchBlocklet(!queryModel.isReadPageByPage());
+ if (queryModel.isReadPageByPage()) {
--- End diff --
Updated description
---