You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by fateme Abiri <fa...@yahoo.com> on 2013/12/24 16:17:37 UTC

HBase Filterlist hierarchy

hi my friends
I want to do follow filters on my table scaning :

scan 'myTable', { FILTER => "(  
( RowFilter(=,'binary:prefixFilter1')  AND  SingleColumnValueFilter(=,'binary:30')) )  
OR
( RowFilter(=,'binary:prefixFilter2')  AND  SingleColumnValueFilter(=,'binary:30')) )
OR
( RowFilter(=,'binary:prefixFilter3')  AND  SingleColumnValueFilter(=,'binary:30')) )
)" }

how can do both: AND and OR filter ??