Github user jiangxb1987 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19713#discussion_r150384871
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala 
---
    @@ -825,10 +825,11 @@ abstract class DDLSuite extends QueryTest with 
SQLTestUtils {
           spark.range(10).createOrReplaceTempView("tab1")
           sql("ALTER TABLE tab1 RENAME TO tab2")
           checkAnswer(spark.table("tab2"), spark.range(10).toDF())
    -      intercept[NoSuchTableException] { spark.table("tab1") }
    +      val e = intercept[AnalysisException](spark.table("tab1")).getMessage
    +      assert(e.contains("Table or view not found"))
    --- End diff --
    
    nit: add an empty line below this.


---

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

Reply via email to