SingleColumnValueFilter is not working correctly
------------------------------------------------
Key: HBASE-4659
URL: https://issues.apache.org/jira/browse/HBASE-4659
Project: HBase
Issue Type: Bug
Components: filters
Affects Versions: 0.90.4
Reporter: guozhw
scan.addColumn(Bytes.toBytes("Info"), Bytes.toBytes("value"));
scan.setMaxVersions();
SingleColumnValueFilter scvf = new
SingleColumnValueFilter(Bytes.toBytes("Info"), Bytes.toBytes("value"),
CompareOp.EQUAL, Bytes.toBytes("test"));
scvf.setLatestVersionOnly(false);
scan.setFilter(scvf);
it can not filter previous versions
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira