Skip to content

Commit

Permalink
Merge c88b2ae into 8f0ec97
Browse files Browse the repository at this point in the history
  • Loading branch information
Indhumathi27 committed Jul 9, 2019
2 parents 8f0ec97 + c88b2ae commit 390e7d6
Showing 1 changed file with 6 additions and 3 deletions.
Expand Up @@ -509,9 +509,12 @@ public BitSet isScanRequired(byte[][] blkMaxVal, byte[][] blkMinVal, boolean[] i
}
} else if (isMeasurePresentInCurrentBlock) {
chunkIndex = msrColumnEvaluatorInfo.getColumnIndexInMinMaxByteArray();
isScanRequired = isScanRequired(blkMaxVal[chunkIndex], blkMinVal[chunkIndex],
msrColumnExecutorInfo.getFilterKeys(),
msrColumnEvaluatorInfo.getType());
if (isMinMaxSet[chunkIndex]) {
isScanRequired = isScanRequired(blkMaxVal[chunkIndex], blkMinVal[chunkIndex],
msrColumnExecutorInfo.getFilterKeys(), msrColumnEvaluatorInfo.getType());
} else {
isScanRequired = true;
}
}

if (isScanRequired) {
Expand Down

0 comments on commit 390e7d6

Please sign in to comment.