Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.5.0
-
None
Description
Reference file - https://github.com/apache/spark/blob/master/sql/core/src/main/scala/org/apache/spark/sql/UDFRegistration.scala
API to be implemented:
def register(name: String, udf: UserDefinedFunction): UserDefinedFunction
def register[RT: TypeTag](name: String, func: Function0[RT]): UserDefinedFunction
-
- From 0 to 22 arguments
def register(name: String, f: UDF0[_], returnType: DataType): Unit
-
- From 0 to 22 arguments
We currently do not support UDAFs so the relevant UDAF APIs may be skipped as well as the python/pyspark (in the context of the scala client) related APIs.