Skip to content

Commit

Permalink
Add visibility to grep
Browse files Browse the repository at this point in the history
  • Loading branch information
alerman committed Apr 17, 2024
1 parent 7c6572c commit 4096d0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class GrepIterator extends Filter {
@Override
public boolean accept(Key k, Value v) {
return match(v.get()) || match(k.getRowData()) || match(k.getColumnFamilyData())
|| match(k.getColumnQualifierData());
|| match(k.getColumnQualifierData()) || match(k.getColumnVisibilityData());
}

protected boolean match(ByteSequence bs) {
Expand Down

0 comments on commit 4096d0d

Please sign in to comment.