[
https://issues.apache.org/jira/browse/HBASE-3459?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
stack updated HBASE-3459:
-------------------------
Fix Version/s: (was: 0.90.1)
Moving 'improvement' out of a bug fix-only release.
> How about EqualsColumnValueGetFilter
> ------------------------------------
>
> Key: HBASE-3459
> URL: https://issues.apache.org/jira/browse/HBASE-3459
> Project: HBase
> Issue Type: Improvement
> Affects Versions: 0.90.0
> Reporter: ncanis
> Attachments: EqualsColumnValueGetFilter.java
>
>
> usually, we need to find column's value is existing.
> in db) select count(*) from user where id='ncanis'
> if we use EqualsColumnValueGetFilter filter
> we can find out column value is existing.
> {code}
> ----------------------
> public EqualsColumnValueGetFilter(final byte[] colName, final byte[]
> value, final int limit) {
> this.colName = colName;
> this.value = value;
> this.limit = limit;
> }
> ------------------------
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.