Github user gatorsmile commented on a diff in the pull request:
https://github.com/apache/spark/pull/19888#discussion_r154855703
--- Diff:
sql/core/src/main/scala/org/apache/spark/sql/execution/command/ddl.scala ---
@@ -206,7 +206,8 @@ case class DropTableCommand(
try {
sparkSession.sharedState.cacheManager.uncacheQuery(sparkSession.table(tableName))
} catch {
- case _: NoSuchTableException if ifExists =>
+ case ae: AnalysisException
+ if ifExists && ae.cause.nonEmpty &&
ae.getCause.isInstanceOf[NoSuchTableException] =>
--- End diff --
I can reproduce it in master now.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]