You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2017/05/22 01:53:26 UTC

hbase git commit: HBASE-15616 (addendum) Allow null qualifier for all table operations

Repository: hbase
Updated Branches:
  refs/heads/master 1ceb25cf0 -> 553d5db35


HBASE-15616 (addendum) Allow null qualifier for all table operations


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/553d5db3
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/553d5db3
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/553d5db3

Branch: refs/heads/master
Commit: 553d5db35565ce5c7bb7f08dfb35ed9422b6bafb
Parents: 1ceb25c
Author: Guanghao Zhang <zg...@apache.org>
Authored: Fri May 19 18:31:32 2017 +0800
Committer: Guanghao Zhang <zg...@apache.org>
Committed: Mon May 22 09:42:02 2017 +0800

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/hbase/client/AsyncTableBase.java    | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/553d5db3/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableBase.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableBase.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableBase.java
index 73ebebb..3c551df 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableBase.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableBase.java
@@ -184,7 +184,6 @@ public interface AsyncTableBase {
       long amount, Durability durability) {
     Preconditions.checkNotNull(row, "row is null");
     Preconditions.checkNotNull(family, "family is null");
-    Preconditions.checkNotNull(qualifier, "qualifier is null");
     return increment(
       new Increment(row).addColumn(family, qualifier, amount).setDurability(durability))
           .thenApply(r -> Bytes.toLong(r.getValue(family, qualifier)));