Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19888#discussion_r154857148
  
    --- 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 --
    
    Yep. It exists in master, too.
    I'll update like the example by @cloud-fan .


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to