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

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

Peter Toth created SPARK-25768:
----------------------------------

             Summary: Constant argument expecting Hive UDFs 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


 

The following doesn't work since SPARK-18186:
{code:java}
test("constant argument expecting Hive UDF") {
  val testData = spark.range(10).toDF()
  withTempView("inputTable") {
    testData.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