Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 84AAB102BF for ; Wed, 11 Jun 2014 16:37:02 +0000 (UTC) Received: (qmail 80904 invoked by uid 500); 11 Jun 2014 16:37:02 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 80865 invoked by uid 500); 11 Jun 2014 16:37:01 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 80855 invoked by uid 99); 11 Jun 2014 16:37:01 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2014 16:37:01 +0000 Date: Wed, 11 Jun 2014 16:37:01 +0000 (UTC) From: "ramkrishna.s.vasudevan (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-11310) Delete's copy constructor should copy the attributes also MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-11310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14027983#comment-14027983 ] ramkrishna.s.vasudevan commented on HBASE-11310: ------------------------------------------------ Ping!!! > 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)