Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/3211#discussion_r20371504
--- 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 --
This might be my second dumb Scala exception question in 24 hours, but, can
you just omit this second clause if you mean for other exceptions to just
propagate up?
---
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]