mirror of https://github.com/apache/druid.git
Remove error suppression code from IncrementalIndexAdapter.
This commit is contained in:
parent
7fe277e6da
commit
c7ff0d698e
|
@ -134,12 +134,7 @@ public class IncrementalIndexAdapter implements IndexableAdapter
|
|||
if (bitmapIndexes[dimIdx] == null) {
|
||||
bitmapIndexes[dimIdx] = bitmapFactory.makeEmptyMutableBitmap();
|
||||
}
|
||||
try {
|
||||
bitmapIndexes[dimIdx].add(rowNum);
|
||||
}
|
||||
catch (Exception e) {
|
||||
log.info(e.toString());
|
||||
}
|
||||
bitmapIndexes[dimIdx].add(rowNum);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue