danny0405 commented on code in PR #12225:
URL: https://github.com/apache/hudi/pull/12225#discussion_r1835870736
##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/table/catalog/HoodieHiveCatalog.java:
##########
@@ -475,6 +478,8 @@ public void createTable(ObjectPath tablePath,
CatalogBaseTable table, boolean ig
if (!ignoreIfExists) {
throw new TableAlreadyExistException(getName(), tablePath, e);
}
+ } catch (HoodieValidationException e) {
+ throw e;
Review Comment:
This catch is meaningless, we can fetch the cause of the wrapper
`HoodieCatalogException` if you want to check it in the test.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]