This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.apache.spark.sql.{Column, DataFrame, SparkSession} | |
import org.apache.spark.sql.functions.broadcast | |
import shapeless.ops.hlist.Prepend | |
import shapeless.{::, HList, HNil} | |
object flow { | |
type JoinList = HList | |
case class AnnotatedDataFrame[D, J <: JoinList](toDF: DataFrame) extends Serializable |
OlderNewer