ChiaPing Tsai created HBASE-16541:
-------------------------------------
Summary: Avoid unnecessary cell copy in Result.compareResults
Key: HBASE-16541
URL: https://issues.apache.org/jira/browse/HBASE-16541
Project: HBase
Issue Type: Improvement
Reporter: ChiaPing Tsai
Priority: Trivial
{code:title=Bar.java|borderStyle=solid}
// Bytes.equals(a, b) should be replaced by Bytes.equals(a, off, len, b, off
len);
public static void compareResults(Result res1, Result res2)
throws Exception {
...
Cell[] ourKVs = res1.rawCells();
Cell[] replicatedKVs = res2.rawCells();
for (int i = 0; i < res1.size(); i++) {
if (!ourKVs[i].equals(replicatedKVs[i]) ||
!Bytes.equals(CellUtil.cloneValue(ourKVs[i]),
CellUtil.cloneValue(replicatedKVs[i]))) {
throw new Exception("This result was different: "
+ res1.toString() + " compared to " + res2.toString());
}
}
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)