client.Result uses inverted Comparator<Long> in the versionMap (containted in
familyMap)
----------------------------------------------------------------------------------------
Key: HBASE-3245
URL: https://issues.apache.org/jira/browse/HBASE-3245
Project: HBase
Issue Type: Bug
Reporter: Ivan Valchev
Fix For: 0.89.20100924
In getMap() method the comparator passed to versionMap does:
public int compare(Long l1, Long l2) {
return l2.compareTo(l1);
}
which inverts the result of the comparison.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.