fixed #2003 ColumnSelectorBitmapIndexSelector throws NPE for dimension not supporting bitmap

This commit is contained in:
navis.ryu 2015-11-24 10:45:36 +09:00
parent f3185938a8
commit c73418c181

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);