mirror of https://github.com/apache/druid.git
Merge pull request #2004 from navis/DRUID-2003
fixed #2003 ColumnSelectorBitmapIndexSelector throws NPE for dimension not supporting bitmap
This commit is contained in:
commit
78e07ea591
|
@ -121,7 +121,7 @@ public class ColumnSelectorBitmapIndexSelector implements BitmapIndexSelector
|
|||
}
|
||||
|
||||
if (!column.getCapabilities().hasBitmapIndexes()) {
|
||||
bitmapFactory.makeEmptyImmutableBitmap();
|
||||
return bitmapFactory.makeEmptyImmutableBitmap();
|
||||
}
|
||||
|
||||
return column.getBitmapIndex().getBitmap(value);
|
||||
|
|
Loading…
Reference in New Issue