Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.2.0
-
None
-
None
Description
Looks like the additional failures in TestRemoteHiveMetaStore, TestSetUGIOnOnlyServer
are related to this patch in HIVE-15877.
I don't think that change was intended.
--- metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java +++ metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java @@ -739,7 +739,10 @@ public void createTable(Table tbl, EnvironmentContext envContext) throws Already hook.commitCreateTable(tbl); } success = true; - } finally { + } catch (Exception e){ + LOG.error("Got exception from createTable", e); + } + finally { if (!success && (hook != null)) { hook.rollbackCreateTable(tbl); }
Attachments
Attachments
Issue Links
- is broken by
-
HIVE-15877 Upload dependency jars for druid storage handler
- Closed