Merge pull request #2004 from navis/DRUID-2003

fixed #2003 ColumnSelectorBitmapIndexSelector throws NPE for dimension not supporting bitmap
This commit is contained in:
Himanshu 2015-11-25 00:12:30 -06:00
commit 78e07ea591
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ public class ColumnSelectorBitmapIndexSelector implements BitmapIndexSelector
}
if (!column.getCapabilities().hasBitmapIndexes()) {
bitmapFactory.makeEmptyImmutableBitmap();
return bitmapFactory.makeEmptyImmutableBitmap();
}
return column.getBitmapIndex().getBitmap(value);