You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2018/01/06 00:49:32 UTC

hbase git commit: HBASE-19717 IntegrationTestDDLMasterFailover is using outdated value for DataBlockEncoding

Repository: hbase
Updated Branches:
  refs/heads/master 45e46bb24 -> 54928ce3e


HBASE-19717 IntegrationTestDDLMasterFailover is using outdated value for DataBlockEncoding

Signed-off-by: tedyu <yu...@gmail.com>


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

Branch: refs/heads/master
Commit: 54928ce3ead61980a98cc64a323a661e82eb62f5
Parents: 45e46bb
Author: Sergey Soldatov <ss...@apache.org>
Authored: Fri Jan 5 16:04:31 2018 -0800
Committer: tedyu <yu...@gmail.com>
Committed: Fri Jan 5 16:49:26 2018 -0800

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/54928ce3/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.java
----------------------------------------------------------------------
diff --git a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.java b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.java
index 3180dae..f4403d6 100644
--- a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.java
+++ b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.java
@@ -698,7 +698,7 @@ public class IntegrationTestDDLMasterFailover extends IntegrationTestBase {
       try {
         TableName tableName = selected.getTableName();
         // possible DataBlockEncoding ids
-        int[] possibleIds = {0, 2, 3, 4, 6};
+        int[] possibleIds = {0, 2, 3, 4, 7};
         short id = (short) possibleIds[RandomUtils.nextInt(0, possibleIds.length)];
         LOG.info("Altering encoding of column family: " + columnDesc + " to: " + id +
             " in table: " + tableName);