Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public RowRanges visit(FilterPredicateCompat filterPredicateCompat) {
return filterPredicateCompat.getFilterPredicate()
.accept(new ColumnIndexFilter(columnIndexStore, paths, rowCount));
} catch (MissingOffsetIndexException e) {
LOGGER.warn("Unable to do filtering", e);
LOGGER.info(e.getMessage());
return RowRanges.createSingle(rowCount);
}
}
Expand Down Expand Up @@ -169,7 +169,7 @@ private RowRanges applyPredicate(Column<?> column, Function<ColumnIndex, Primiti
OffsetIndex oi = columnIndexStore.getOffsetIndex(columnPath);
ColumnIndex ci = columnIndexStore.getColumnIndex(columnPath);
if (ci == null) {
LOGGER.warn("No column index for column {} is available; Unable to filter on this column", columnPath);
LOGGER.info("No column index for column {} is available; Unable to filter on this column", columnPath);
return allRows();
}

Expand Down