Repository: hbase Updated Branches: refs/heads/branch-1.1 349a65d0d -> 6a65b9376
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/6a65b937 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/6a65b937 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/6a65b937 Branch: refs/heads/branch-1.1 Commit: 6a65b9376b93529418dbc1e92cc7473f2c5b2fd2 Parents: 349a65d Author: tedyu <[email protected]> Authored: Tue Jul 21 02:39:14 2015 -0700 Committer: tedyu <[email protected]> Committed: Tue Jul 21 02:39:14 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/6a65b937/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 16e119f..4361be7 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 @@ -1176,7 +1176,7 @@ public class HTable implements HTableInterface, RegionLocator { 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); } /**
