[ https://issues.apache.org/jira/browse/HIVE-24516?focusedWorklogId=522644&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-522644 ]
ASF GitHub Bot logged work on HIVE-24516: ----------------------------------------- Author: ASF GitHub Bot Created on: 10/Dec/20 09:50 Start Date: 10/Dec/20 09:50 Worklog Time Spent: 10m Work Description: pvargacl opened a new pull request #1762: URL: https://github.com/apache/hive/pull/1762 ### What changes were proposed in this pull request? remove unnecessary error handling ### Why are the changes needed? ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? ---------------------------------------------------------------- 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: 522644) Remaining Estimate: 0h Time Spent: 10m > 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 > Time Spent: 10m > 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)