You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by an...@apache.org on 2016/02/11 15:30:20 UTC

hbase git commit: HBASE-15198 RPC client not using Codec and CellBlock for puts by default-addendum.

Repository: hbase
Updated Branches:
  refs/heads/branch-1.0 62206fd9a -> 8f064d477


HBASE-15198 RPC client not using Codec and CellBlock for puts by default-addendum.


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

Branch: refs/heads/branch-1.0
Commit: 8f064d47785dac99b69cc16c50fe26a6203970f2
Parents: 62206fd
Author: anoopsjohn <an...@gmail.com>
Authored: Thu Feb 11 20:00:02 2016 +0530
Committer: anoopsjohn <an...@gmail.com>
Committed: Thu Feb 11 20:00:02 2016 +0530

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hbase/client/TestAsyncProcess.java   | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/8f064d47/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java b/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java
index ce7e2f3..cbd3ffc 100644
--- a/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java
+++ b/hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java
@@ -353,6 +353,11 @@ public class TestAsyncProcess {
         byte[] row, boolean useCache, boolean retry, int replicaId) throws IOException {
       return new RegionLocations(loc1);
     }
+
+    @Override
+    public boolean hasCellBlockSupport() {
+      return false;
+    }
   }
 
   /**