You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ni...@apache.org on 2020/02/25 08:28:50 UTC

[kylin] branch 2.5.x-hadoop3.1 updated: htable name can not cast to upper

This is an automated email from the ASF dual-hosted git repository.

nic pushed a commit to branch 2.5.x-hadoop3.1
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/2.5.x-hadoop3.1 by this push:
     new 81c3f91  htable name can not cast to upper
81c3f91 is described below

commit 81c3f9138a71a514b770cc90e8696f39fd54b772
Author: zhangrusong <zh...@ke.com>
AuthorDate: Sat Feb 22 17:21:39 2020 +0800

    htable name can not cast to upper
---
 .../main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java
index 0f11eb9..1260689 100644
--- a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java
+++ b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/CubeHFileJob.java
@@ -100,7 +100,7 @@ public class CubeHFileJob extends AbstractHadoopJob {
 
             Configuration hbaseConf = HBaseConfiguration.create(getConf());
 
-            String hTableName = getOptionValue(OPTION_HTABLE_NAME).toUpperCase();
+            String hTableName = getOptionValue(OPTION_HTABLE_NAME);
             connection = ConnectionFactory.createConnection(hbaseConf);
             Table table = connection.getTable(TableName.valueOf(hTableName));
             RegionLocator regionLocator = connection.getRegionLocator(TableName.valueOf(hTableName));