You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Wenchen Fan (JIRA)" <ji...@apache.org> on 2018/10/19 13:21:00 UTC

[jira] [Resolved] (SPARK-25768) Constant argument expecting Hive UDAFs doesn't work

     [ https://issues.apache.org/jira/browse/SPARK-25768?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Wenchen Fan resolved SPARK-25768.
---------------------------------
       Resolution: Fixed
    Fix Version/s: 2.4.0
                   2.3.3

> Constant argument expecting Hive UDAFs doesn't work
> ---------------------------------------------------
>
>                 Key: SPARK-25768
>                 URL: https://issues.apache.org/jira/browse/SPARK-25768
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.2.0
>            Reporter: Peter Toth
>            Assignee: Peter Toth
>            Priority: Major
>             Fix For: 2.3.3, 2.4.0
>
>
>  The following doesn't work since SPARK-18186 so it is a regression.
> {code:java}
> test("constant argument expecting Hive UDAF") {
>   withTempView("inputTable") {
>     spark.range(10).createOrReplaceTempView("inputTable")
>     withUserDefinedFunction("testGenericUDAFPercentileApprox" -> false) {
>       val numFunc = spark.catalog.listFunctions().count()
>       sql(s"CREATE FUNCTION testGenericUDAFPercentileApprox AS '" +
>         s"${classOf[GenericUDAFPercentileApprox].getName}'")
>       checkAnswer(
>         sql("SELECT testGenericUDAFPercentileApprox(id, 0.5) FROM inputTable"),
>         Seq(Row(4.0)))
>     }
>   }
> }
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org