Repository: hbase Updated Branches: refs/heads/0.98 d0fc0466e -> 57051fe82
HBASE-13881 Bug in HTable#incrementColumnValue implementation (Gabor Liptak) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/57051fe8 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/57051fe8 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/57051fe8 Branch: refs/heads/0.98 Commit: 57051fe82778f9c5d44c939e71abdd93a99ccbb6 Parents: d0fc046 Author: tedyu <[email protected]> Authored: Tue Jul 21 02:40:40 2015 -0700 Committer: tedyu <[email protected]> Committed: Tue Jul 21 02:40:40 2015 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/hbase/client/HTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/57051fe8/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java index 744c8e8..eef023d 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java @@ -1163,7 +1163,7 @@ public class HTable implements HTableInterface { final byte [] qualifier, final long amount, final boolean writeToWAL) throws IOException { return incrementColumnValue(row, family, qualifier, amount, - writeToWAL? Durability.SKIP_WAL: Durability.USE_DEFAULT); + writeToWAL? Durability.SYNC_WAL: Durability.SKIP_WAL); } /**
