You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2010/04/12 20:19:55 UTC

[jira] Assigned: (HBASE-2239) [IHBase] Improve the expression classes by adding the ability to generate filters from them.

     [ https://issues.apache.org/jira/browse/HBASE-2239?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

stack reassigned HBASE-2239:
----------------------------

    Assignee: stack

> [IHBase] Improve the expression classes by adding the ability to generate filters from them.
> --------------------------------------------------------------------------------------------
>
>                 Key: HBASE-2239
>                 URL: https://issues.apache.org/jira/browse/HBASE-2239
>             Project: Hadoop HBase
>          Issue Type: Improvement
>          Components: contrib
>    Affects Versions: 0.20.3
>            Reporter: Dan Washusen
>            Assignee: stack
>             Fix For: 0.20.4
>
>         Attachments: HBASE-2239.patch
>
>
> One of the requirements of IHBase is that the a filter should be provided that at least matches the index expression hint.  The IHBase expression classes could easily be used to generate a filter that can be used on the scan...
> For example: 
> {code}
> Expression expression = Expression
>     .or(
>         Expression.comparison(columnName1, qualifer1, operator1, value1)
>     )
>     .or(
>         Expression.and()
>             .and(Expression.comparison(columnName2, qualifer2, operator2, value2))
>             .and(Expression.comparison(columnName3, qualifer3, operator3, value3))
>     );
> Filter filter  = expression.toFilter();
> {code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira