Nihal Jain created HBASE-21021:
----------------------------------
Summary: Result returned by Append operation should be ordered
Key: HBASE-21021
URL: https://issues.apache.org/jira/browse/HBASE-21021
Project: HBase
Issue Type: Bug
Affects Versions: 1.3.0
Reporter: Nihal Jain
Assignee: Nihal Jain
*Problem:*
The result returned by the append operation should be ordered. Currently, it
returns an unordered list, which may cause problems like if the user tries to
perform Result.getValue(byte[] family, byte[] qualifier), even if the returned
result has a value corresponding to (family, qualifier), the method may return
null as it performs a binary search over the unsorted result (which should
have been sorted actually).
*Actual:* The returned result is unordered
*Expected:* Similar to increment op, the returned result should be ordered.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)