Is there a way to specify multiple filters during a scan? For example - Specify both a ColumnFamilyFilter
and RowFilter
?
Filter rowFilter =
new RowFilter(CompareFilter.CompareOp.EQUAL, new RegexStringComparator(
rowFilterString));
Scan s = new Scan();
s.setFilter(rowFilter);
I wanted to also add a ColumnFilter
to s
. But it obviously overrides the latest filter.