-
Notifications
You must be signed in to change notification settings - Fork 28.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Spark SQL] add test suite for UDF on struct
- Loading branch information
1 parent
8fc6f51
commit 354386a
Showing
2 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
125 changes: 125 additions & 0 deletions
125
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveUdfSuite.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.sql.hive.execution | ||
|
||
import org.apache.spark.sql.hive.test.TestHive | ||
import org.apache.hadoop.conf.Configuration | ||
import org.apache.spark.SparkContext._ | ||
import java.util | ||
import org.apache.hadoop.fs.{FileSystem, Path} | ||
import org.apache.hadoop.hive.serde2.{SerDeStats, AbstractSerDe} | ||
import org.apache.hadoop.io.{NullWritable, Writable} | ||
import org.apache.hadoop.hive.serde2.objectinspector.{ObjectInspectorFactory, ObjectInspector} | ||
import java.util.Properties | ||
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory | ||
import scala.collection.JavaConversions._ | ||
import java.io.{DataOutput, DataInput} | ||
import org.apache.hadoop.hive.ql.udf.generic.GenericUDF | ||
import org.apache.hadoop.hive.ql.udf.generic.GenericUDF.DeferredObject | ||
|
||
/** | ||
* A test suite for Hive custom UDFs. | ||
*/ | ||
class HiveUdfSuite extends HiveComparisonTest { | ||
|
||
TestHive.hql( | ||
""" | ||
|CREATE EXTERNAL TABLE hiveUdfTestTable ( | ||
| pair STRUCT<id: INT, value: INT> | ||
|) | ||
|PARTITIONED BY (partition STRING) | ||
|ROW FORMAT SERDE '%s' | ||
|STORED AS SEQUENCEFILE | ||
""".stripMargin.format(classOf[PairSerDe].getName) | ||
) | ||
|
||
TestHive.hql( | ||
"ALTER TABLE hiveUdfTestTable ADD IF NOT EXISTS PARTITION(partition='testUdf') LOCATION '%s'" | ||
.format(this.getClass.getClassLoader.getResource("data/files/testUdf").getFile) | ||
) | ||
|
||
TestHive.hql("CREATE TEMPORARY FUNCTION testUdf AS '%s'".format(classOf[PairUdf].getName)) | ||
|
||
TestHive.hql("SELECT testUdf(pair) FROM hiveUdfTestTable") | ||
} | ||
|
||
class TestPair(x: Int, y: Int) extends Writable with Serializable { | ||
def this() = this(0, 0) | ||
var entry: (Int, Int) = (x, y) | ||
|
||
override def write(output: DataOutput): Unit = { | ||
output.writeInt(entry._1) | ||
output.writeInt(entry._2) | ||
} | ||
|
||
override def readFields(input: DataInput): Unit = { | ||
val x = input.readInt() | ||
val y = input.readInt() | ||
entry = (x, y) | ||
} | ||
} | ||
|
||
class PairSerDe extends AbstractSerDe { | ||
override def initialize(p1: Configuration, p2: Properties): Unit = {} | ||
|
||
override def getObjectInspector: ObjectInspector = { | ||
ObjectInspectorFactory | ||
.getStandardStructObjectInspector( | ||
Seq("pair"), | ||
Seq(ObjectInspectorFactory.getStandardStructObjectInspector( | ||
Seq("id", "value"), | ||
Seq(PrimitiveObjectInspectorFactory.javaIntObjectInspector, | ||
PrimitiveObjectInspectorFactory.javaIntObjectInspector)) | ||
)) | ||
} | ||
|
||
override def getSerializedClass: Class[_ <: Writable] = classOf[TestPair] | ||
|
||
override def getSerDeStats: SerDeStats = null | ||
|
||
override def serialize(p1: scala.Any, p2: ObjectInspector): Writable = null | ||
|
||
override def deserialize(value: Writable): AnyRef = { | ||
val pair = value.asInstanceOf[TestPair] | ||
|
||
val row = new util.ArrayList[util.ArrayList[AnyRef]] | ||
row.add(new util.ArrayList[AnyRef](2)) | ||
row(0).add(Integer.valueOf(pair.entry._1)) | ||
row(0).add(Integer.valueOf(pair.entry._2)) | ||
|
||
row | ||
} | ||
} | ||
|
||
class PairUdf extends GenericUDF { | ||
override def initialize(p1: Array[ObjectInspector]): ObjectInspector = | ||
ObjectInspectorFactory.getStandardStructObjectInspector( | ||
Seq("id", "value"), | ||
Seq(PrimitiveObjectInspectorFactory.javaIntObjectInspector, PrimitiveObjectInspectorFactory.javaIntObjectInspector) | ||
) | ||
|
||
override def evaluate(args: Array[DeferredObject]): AnyRef = { | ||
println("Type = %s".format(args(0).getClass.getName)) | ||
Integer.valueOf(args(0).get.asInstanceOf[TestPair].entry._2) | ||
} | ||
|
||
override def getDisplayString(p1: Array[String]): String = "" | ||
} | ||
|
||
|
||
|