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

    https://github.com/apache/spark/pull/16826#discussion_r104784305
  
    --- Diff: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/catalog/SessionCatalogSuite.scala
 ---
    @@ -1241,16 +1246,30 @@ class SessionCatalogSuite extends PlanTest {
         assert(clone.getCurrentDatabase == db1)
     
         // check if clone and original independent
    -    val db2 = "copytest2"
    -    val tempTable2 = Range(1, 20, 2, 20)
    -    clone.createTempView(db2, tempTable2, overrideIfExists = false)
         clone.setCurrentDatabase(db2)
         assert(original.getCurrentDatabase == db1)
    -
    -    val db3 = "copytest3"
    -    val tempTable3 = Range(1, 30, 2, 30)
    -    original.createTempView(db3, tempTable3, overrideIfExists = false)
         original.setCurrentDatabase(db3)
         assert(clone.getCurrentDatabase == db2)
       }
    +
    +  test("SPARK-19737: detect undefined functions without triggering 
relation resolution") {
    --- End diff --
    
    Is this supposed to be part of this PR?


---
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]

Reply via email to