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

    https://github.com/apache/spark/pull/7207#discussion_r33876378
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/UDFSuite.scala ---
    @@ -82,6 +83,48 @@ class UDFSuite extends QueryTest {
         assert(ctx.sql("SELECT strLenScala('test', 1)").head().getInt(0) === 5)
       }
     
    +  test("UDF in a WHERE") {
    +    testData.sqlContext.udf.register("oneArgFilter", (n:Int) => { n > 80 })
    +
    +    val result =
    +      testData.sqlContext.sql("SELECT * FROM testData WHERE 
oneArgFilter(key)")
    +    assert(result.count() === 20)
    +  }
    +
    +  test("UDF in a HAVING") {
    +    testData.sqlContext.udf.register("havingFilter", (n:Long) => { n > 5 })
    +
    +    val result =
    +      testData.sqlContext.sql("SELECT g, SUM(v) as s FROM groupData GROUP 
BY g HAVING havingFilter(s)")
    --- End diff --
    
    Fixed.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to