Github user marmbrus commented on a diff in the pull request:
https://github.com/apache/spark/pull/3211#discussion_r20393924
--- Diff:
sql/hive/src/main/scala/org/apache/spark/sql/hive/execution/commands.scala ---
@@ -55,7 +56,12 @@ case class DropTable(tableName: String, ifExists:
Boolean) extends LeafNode with
override protected lazy val sideEffectResult: Seq[Row] = {
val ifExistsClause = if (ifExists) "IF EXISTS " else ""
- hiveContext.runSqlHive(s"DROP TABLE $ifExistsClause$tableName")
+ try {
+ hiveContext.runSqlHive(s"DROP TABLE $ifExistsClause$tableName")
+ } catch {
+ case ne: NoSuchObjectException => //ignore
+ case e: Exception => throw e
--- End diff --
Agree that the exception will propagate up without this clause.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]