[ https://issues.apache.org/jira/browse/HIVE-24516?focusedWorklogId=551077&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-551077 ]
ASF GitHub Bot logged work on HIVE-24516: ----------------------------------------- Author: ASF GitHub Bot Created on: 11/Feb/21 00:46 Start Date: 11/Feb/21 00:46 Worklog Time Spent: 10m Work Description: github-actions[bot] commented on pull request #1762: URL: https://github.com/apache/hive/pull/1762#issuecomment-777138529 This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Feel free to reach out on the d...@hive.apache.org list if the patch is in need of reviews. ---------------------------------------------------------------- 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: 551077) Time Spent: 20m (was: 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 > Labels: pull-request-available > Time Spent: 20m > 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)