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

Michael Armbrust resolved SPARK-6379.
-------------------------------------
       Resolution: Fixed
    Fix Version/s: 1.4.0

> Support a functon to call user-defined functions registered in SQLContext
> -------------------------------------------------------------------------
>
>                 Key: SPARK-6379
>                 URL: https://issues.apache.org/jira/browse/SPARK-6379
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>            Reporter: Takeshi Yamamuro
>             Fix For: 1.4.0
>
>
> This is useful for using pre-defined UDFs in SQLContext;
> val df = Seq(("id1", 1), ("id2", 4), ("id3", 5)).toDF("id", "value")
> val sqlctx = df.sqlContext
> sqlctx.udf.register("simpleUdf", (v: Int) => v * v)
> df.select($"id", sqlctx.callUdf("simpleUdf", $"value"))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to