[
https://issues.apache.org/jira/browse/HBASE-16541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15463130#comment-15463130
]
Hudson commented on HBASE-16541:
--------------------------------
FAILURE: Integrated in Jenkins build HBase-1.4 #393 (See
[https://builds.apache.org/job/HBase-1.4/393/])
HBASE-16541 Avoid unnecessary cell copy in Result#compareResults (tedyu: rev
a0e52a2dabbd56a5126a1b981a5749bfeb89980e)
* (edit) hbase-client/src/main/java/org/apache/hadoop/hbase/client/Result.java
> 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
> Assignee: ChiaPing Tsai
> Fix For: 2.0.0, 1.4.0
>
> Attachments: HBASE-16541.v1.patch, HBASE-16541.v1.patch,
> HBASE-16541.v2.patch
>
>
> {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)