Repository: hbase Updated Branches: refs/heads/branch-1.2 6e558816c -> 694600ae8
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/694600ae Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/694600ae Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/694600ae Branch: refs/heads/branch-1.2 Commit: 694600ae8942ed255716615881168779d7e8f917 Parents: 6e55881 Author: tedyu <[email protected]> Authored: Tue Jul 21 02:37:54 2015 -0700 Committer: tedyu <[email protected]> Committed: Tue Jul 21 02:37:54 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/694600ae/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); } /**
