[
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)