[ https://issues.apache.org/jira/browse/SPARK-19427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Apache Spark reassigned SPARK-19427:
------------------------------------
Assignee: (was: Apache Spark)
> UserDefinedFunction should support data types strings
> -----------------------------------------------------
>
> Key: SPARK-19427
> URL: https://issues.apache.org/jira/browse/SPARK-19427
> Project: Spark
> Issue Type: Sub-task
> Components: PySpark, SQL
> Affects Versions: 2.0.0, 2.1.0
> Reporter: Maciej Szymkiewicz
>
> PySpark SQL supports casting using data type strings.
> {code}
> from pyspark.sql.functions import col
> col("foo").cast("integer")
> {code}
> It should be possible to do the same with {{udf}} / {{UserDefinedFunction}}:
> {code}
> from pyspark.sql import udf
> udf(lambda x: x + 1, "integer")
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org
|