com.sparkutils.quality.impl.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quality_2.4_2.11 Show documentation
Show all versions of quality_2.4_2.11 Show documentation
A Spark library for managing in-process data quality rules via Spark SQL
The newest version!
package com.sparkutils.quality
import frameless.TypedColumn
import org.apache.spark.sql.Row
package object impl { //extends Udf2 {
/**
* Easier type to work with for UserDefinedFunction A -> R on a Row
* @tparam A input type
* @tparam R return type
*/
type TypedRowFunction[A, R] = TypedColumn[Row, A] => TypedColumn[Row, R]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy