Skip to content

Commit d860cf2

Browse files
committed
[hotfix-#1003][hive] Remove useless code of hive.
1 parent 8c94d08 commit d860cf2

File tree

1 file changed

+2
-1
lines changed
  • chunjun-connectors/chunjun-connector-hive/src/main/java/com/dtstack/chunjun/connector/hive/util

1 file changed

+2
-1
lines changed

chunjun-connectors/chunjun-connector-hive/src/main/java/com/dtstack/chunjun/connector/hive/util/HiveUtil.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ private static void fillTableInfo(Connection connection, TableInfo tableInfo) {
175175
metadataParser.fillTableInfo(tableInfo, result);
176176
} catch (Exception e) {
177177
if (e.getMessage().contains(NO_SUCH_TABLE_EXCEPTION)) {
178-
throw new ChunJunRuntimeException(String.format("表%s不存在", tableInfo.getTablePath()));
178+
throw new ChunJunRuntimeException(
179+
String.format("表%s不存在", tableInfo.getTablePath()));
179180
} else {
180181
throw e;
181182
}

0 commit comments

Comments
 (0)