Skip to content

Commit

Permalink
[hotfix-#1003][hive] Remove useless code of hive.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlechazoW committed Jun 25, 2022
1 parent 8c94d08 commit d860cf2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ private static void fillTableInfo(Connection connection, TableInfo tableInfo) {
metadataParser.fillTableInfo(tableInfo, result);
} catch (Exception e) {
if (e.getMessage().contains(NO_SUCH_TABLE_EXCEPTION)) {
throw new ChunJunRuntimeException(String.format("表%s不存在", tableInfo.getTablePath()));
throw new ChunJunRuntimeException(
String.format("表%s不存在", tableInfo.getTablePath()));
} else {
throw e;
}
Expand Down

0 comments on commit d860cf2

Please sign in to comment.