This is an automated email from the ASF dual-hosted git repository. nic pushed a commit to branch master-hadoop3 in repository https://gitbox.apache.org/repos/asf/kylin.git
commit 8cfe05d141288c2d75815348de5df2c652dcc41b Author: liuzx32 <liuz...@163.com> AuthorDate: Wed Jun 26 16:27:26 2019 +0800 remove htable toUpperCase, for HBase tableName is case sensitive --- .../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 86189e5..32f0ce8 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 @@ -105,7 +105,7 @@ public class CubeHFileJob extends AbstractHadoopJob { Configuration hbaseConf = HBaseConfiguration.create(getConf()); - String hTableName = getOptionValue(OPTION_HTABLE_NAME).toUpperCase(Locale.ROOT); + String hTableName = getOptionValue(OPTION_HTABLE_NAME); connection = ConnectionFactory.createConnection(hbaseConf); Table table = connection.getTable(TableName.valueOf(hTableName)); RegionLocator regionLocator = connection.getRegionLocator(TableName.valueOf(hTableName));