I have an HBase scan with a ColumnPrefixFilter
and multiple FuzzyFilter
s like so:
FilterList filterList = new FilterList();
filterList.addFilter(new FuzzyFilter(...));
filterList.addFilter(new FuzzyFilter(...));
filterList.addFilter(new ColumnPrefixFilter(...));
Scan s = new Scan();
s.setFilter(filterList);
Is there a way I can use MUST_PASS_ONE
on the FuzzyFilter
s and then a MUST_PASS_ALL
on the ColumnPrefixFilter
combined with the set of FuzzyFilter
s?
So I'm looking for something like this:
ColumnPrefixFilter
AND (FuzzyFilter
OR FuzzyFilter
)