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 E405618B78 for ; Tue, 21 Jul 2015 13:05:20 +0000 (UTC) Received: (qmail 280 invoked by uid 500); 21 Jul 2015 13:05:04 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 230 invoked by uid 500); 21 Jul 2015 13:05:04 -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 213 invoked by uid 99); 21 Jul 2015 13:05:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2015 13:05:04 +0000 Date: Tue, 21 Jul 2015 13:05:04 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-13881) Bug in HTable#incrementColumnValue implementation 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-13881?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14635083#comment-14635083 ] Hudson commented on HBASE-13881: -------------------------------- FAILURE: Integrated in HBase-1.3 #68 (See [https://builds.apache.org/job/HBase-1.3/68/]) HBASE-13881 Bug in HTable#incrementColumnValue implementation (Gabor Liptak) (tedyu: rev 48b968e323d6d1c2b21719542c8ad3006e06578f) * hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java > Bug in HTable#incrementColumnValue implementation > ------------------------------------------------- > > Key: HBASE-13881 > URL: https://issues.apache.org/jira/browse/HBASE-13881 > Project: HBase > Issue Type: Bug > Components: Client > Affects Versions: 0.98.6.1, 1.0.1 > Reporter: Jerry Lam > Assignee: Gabor Liptak > Fix For: 0.98.14, 1.0.2, 1.2.0, 1.1.2, 1.3.0 > > Attachments: HBASE-13881.branch-1.1.patch > > > The exact method I'm talking about is: > {code} > @Deprecated > @Override > public long incrementColumnValue(final byte [] row, final byte [] family, > final byte [] qualifier, final long amount, final boolean writeToWAL) > throws IOException { > return incrementColumnValue(row, family, qualifier, amount, > writeToWAL? Durability.SKIP_WAL: Durability.USE_DEFAULT); > } > {code} > Setting writeToWAL to true, Durability will be set to SKIP_WAL which does not make much sense unless the meaning of SKIP_WAL is negated. -- This message was sent by Atlassian JIRA (v6.3.4#6332)