[
https://issues.apache.org/jira/browse/HBASE-11310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14028096#comment-14028096
]
Hudson commented on HBASE-11310:
--------------------------------
FAILURE: Integrated in HBase-0.98 #330 (See
[https://builds.apache.org/job/HBase-0.98/330/])
HBASE-11310:Delete's copy constructor should copy the attributes also
(ramkrishna: rev 9b94c14fa3989a1d170749ab51f14703a1f3bd1e)
* hbase-client/src/main/java/org/apache/hadoop/hbase/client/Increment.java
* hbase-client/src/main/java/org/apache/hadoop/hbase/client/Get.java
* hbase-client/src/main/java/org/apache/hadoop/hbase/client/Delete.java
* hbase-client/src/main/java/org/apache/hadoop/hbase/client/Append.java
> Delete's copy constructor should copy the attributes also
> ---------------------------------------------------------
>
> Key: HBASE-11310
> URL: https://issues.apache.org/jira/browse/HBASE-11310
> Project: HBase
> Issue Type: Bug
> Components: mapreduce
> Affects Versions: 0.98.3
> Reporter: ramkrishna.s.vasudevan
> Assignee: ramkrishna.s.vasudevan
> Fix For: 0.99.0, 0.98.4
>
> Attachments: HBASE-11310.patch, HBASE-11310_1.patch
>
>
> The constructor in Delete
> {code}
> public Delete(final Delete d) {
> this.row = d.getRow();
> this.ts = d.getTimeStamp();
> this.familyMap.putAll(d.getFamilyCellMap());
> this.durability = d.durability;
> }
> {code}
> should copy the attributes also. Similar bug was raised for Put also. I
> remember because I found while debugging an MR issue. Now while checking
> another MR issue found for delete it has not been done.
--
This message was sent by Atlassian JIRA
(v6.2#6252)