All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.spark.sql.hive.HiveSqlTools.scala Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
// Based on EvilSql tools from Sparkling Pandas (Apache Licensed)
package org.apache.spark.sql.hive;

import org.apache.spark.sql.catalyst.expressions._

// This will break, because we do evil things. but we do them in the name of fun
object HiveSqlTools {
  def makeHiveUdaf(name: String, children: Seq[Expression]) = {
    //this doesn't work with Spark 1.5.x
    //HiveUdaf(new HiveFunctionWrapper(name), children)
    ???
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy