Return-Path: X-Original-To: apmail-accumulo-notifications-archive@minotaur.apache.org Delivered-To: apmail-accumulo-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6694117530 for ; Tue, 13 Jan 2015 18:22:34 +0000 (UTC) Received: (qmail 24866 invoked by uid 500); 13 Jan 2015 18:22:35 -0000 Delivered-To: apmail-accumulo-notifications-archive@accumulo.apache.org Received: (qmail 24826 invoked by uid 500); 13 Jan 2015 18:22:35 -0000 Mailing-List: contact notifications-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jira@apache.org Delivered-To: mailing list notifications@accumulo.apache.org Received: (qmail 24776 invoked by uid 99); 13 Jan 2015 18:22:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jan 2015 18:22:35 +0000 Date: Tue, 13 Jan 2015 18:22:35 +0000 (UTC) From: "Dennis Patrone (JIRA)" To: notifications@accumulo.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (ACCUMULO-3474) ProxyServer ignores value of isDeleted on ColumnUpdate 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/ACCUMULO-3474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14275652#comment-14275652 ] Dennis Patrone commented on ACCUMULO-3474: ------------------------------------------ A client-side workaround for previous versions, only set the flag when you want it to be a delete: {code} ColumnUpdate cu = ... // workaround for ACCUMULO-3474 if (delete) { cu.setDeleteCell(true); } // otherwise, leave deleteCell unset {code} > ProxyServer ignores value of isDeleted on ColumnUpdate > ------------------------------------------------------ > > Key: ACCUMULO-3474 > URL: https://issues.apache.org/jira/browse/ACCUMULO-3474 > Project: Accumulo > Issue Type: Bug > Components: proxy > Affects Versions: 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1 > Reporter: Dennis Patrone > Assignee: Eric Newton > Priority: Minor > Fix For: 1.5.3, 1.6.2 > > Time Spent: 50m > Remaining Estimate: 0h > > The ProxyServer ignores the actual boolean value of the isDeleted flag on a ColumnUpdate. If the isDeleted value is set, regardless of the actual boolean value, the ProxyServer marks the update as a delete. > The ProxyServer should be updated to check the value of the flag. -- This message was sent by Atlassian JIRA (v6.3.4#6332)