[ https://issues.apache.org/jira/browse/HIVE-24516?focusedWorklogId=554007&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-554007 ]
ASF GitHub Bot logged work on HIVE-24516: ----------------------------------------- Author: ASF GitHub Bot Created on: 18/Feb/21 00:52 Start Date: 18/Feb/21 00:52 Worklog Time Spent: 10m Work Description: github-actions[bot] closed pull request #1762: URL: https://github.com/apache/hive/pull/1762 ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 554007) Time Spent: 0.5h (was: 20m) > Txnhandler onrename might ignore exceptions > ------------------------------------------- > > Key: HIVE-24516 > URL: https://issues.apache.org/jira/browse/HIVE-24516 > Project: Hive > Issue Type: Bug > Components: Hive > Reporter: Peter Varga > Assignee: Peter Varga > Priority: Major > Labels: pull-request-available > Time Spent: 0.5h > Remaining Estimate: 0h > > This is a followup on HIVE-24193. Table not exists errors shouldn't be > ignored in the first place. > {code} > } catch (SQLException e) { > LOG.debug("Going to rollback: " + callSig); > rollbackDBConn(dbConn); > checkRetryable(dbConn, e, callSig); > if (e.getMessage().contains("does not exist")) { > LOG.warn("Cannot perform " + callSig + " since metastore table does > not exist"); > } else { > throw new MetaException("Unable to " + callSig + ":" + > StringUtils.stringifyException(e)); > } > } > {code} > This error handling might have been put there for backard compatibility for > missing acid metadata tables, but this is not needed anymore. -- This message was sent by Atlassian Jira (v8.3.4#803005)