Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-23311][SQL][TEST]add FilterFunction test case for test CombineTypedFilters #20482

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import java.sql.{Date, Timestamp}

import scala.language.implicitConversions

import org.apache.spark.api.java.function.FilterFunction
import org.apache.spark.sql.Encoder
import org.apache.spark.sql.catalyst.analysis._
import org.apache.spark.sql.catalyst.expressions._
Expand Down Expand Up @@ -301,6 +302,8 @@ package object dsl {

def filter[T : Encoder](func: T => Boolean): LogicalPlan = TypedFilter(func, logicalPlan)

def filter[T : Encoder](func: FilterFunction[T]): LogicalPlan = TypedFilter(func, logicalPlan)

def serialize[T : Encoder]: LogicalPlan = CatalystSerde.serialize[T](logicalPlan)

def deserialize[T : Encoder]: LogicalPlan = CatalystSerde.deserialize[T](logicalPlan)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package org.apache.spark.sql.catalyst.optimizer

import scala.reflect.runtime.universe.TypeTag

import org.apache.spark.api.java.function.FilterFunction
import org.apache.spark.sql.catalyst.dsl.expressions._
import org.apache.spark.sql.catalyst.dsl.plans._
import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder
Expand All @@ -38,18 +39,19 @@ class TypedFilterOptimizationSuite extends PlanTest {

implicit private def productEncoder[T <: Product : TypeTag] = ExpressionEncoder[T]()

val testRelation = LocalRelation('_1.int, '_2.int)

test("filter after serialize with the same object type") {
val input = LocalRelation('_1.int, '_2.int)
val f = (i: (Int, Int)) => i._1 > 0

val query = input
val query = testRelation
.deserialize[(Int, Int)]
.serialize[(Int, Int)]
.filter(f).analyze

val optimized = Optimize.execute(query)

val expected = input
val expected = testRelation
.deserialize[(Int, Int)]
.where(callFunction(f, BooleanType, 'obj))
.serialize[(Int, Int)].analyze
Expand All @@ -58,10 +60,9 @@ class TypedFilterOptimizationSuite extends PlanTest {
}

test("filter after serialize with different object types") {
val input = LocalRelation('_1.int, '_2.int)
val f = (i: OtherTuple) => i._1 > 0

val query = input
val query = testRelation
.deserialize[(Int, Int)]
.serialize[(Int, Int)]
.filter(f).analyze
Expand All @@ -70,17 +71,16 @@ class TypedFilterOptimizationSuite extends PlanTest {
}

test("filter before deserialize with the same object type") {
val input = LocalRelation('_1.int, '_2.int)
val f = (i: (Int, Int)) => i._1 > 0

val query = input
val query = testRelation
.filter(f)
.deserialize[(Int, Int)]
.serialize[(Int, Int)].analyze

val optimized = Optimize.execute(query)

val expected = input
val expected = testRelation
.deserialize[(Int, Int)]
.where(callFunction(f, BooleanType, 'obj))
.serialize[(Int, Int)].analyze
Expand All @@ -89,10 +89,9 @@ class TypedFilterOptimizationSuite extends PlanTest {
}

test("filter before deserialize with different object types") {
val input = LocalRelation('_1.int, '_2.int)
val f = (i: OtherTuple) => i._1 > 0

val query = input
val query = testRelation
.filter(f)
.deserialize[(Int, Int)]
.serialize[(Int, Int)].analyze
Expand All @@ -101,21 +100,89 @@ class TypedFilterOptimizationSuite extends PlanTest {
}

test("back to back filter with the same object type") {
val input = LocalRelation('_1.int, '_2.int)
val f1 = (i: (Int, Int)) => i._1 > 0
val f2 = (i: (Int, Int)) => i._2 > 0

val query = input.filter(f1).filter(f2).analyze
val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 1)
}

test("back to back filter with different object types") {
val input = LocalRelation('_1.int, '_2.int)
val f1 = (i: (Int, Int)) => i._1 > 0
val f2 = (i: OtherTuple) => i._2 > 0

val query = input.filter(f1).filter(f2).analyze
val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 2)
}

test("back to back FilterFunction with the same object type") {
val f1 = new FilterFunction[(Int, Int)] {
override def call(value: (Int, Int)): Boolean = value._1 > 0
}
val f2 = new FilterFunction[(Int, Int)] {
override def call(value: (Int, Int)): Boolean = value._2 > 0
}

val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 1)
}

test("back to back FilterFunction with different object types") {
val f1 = new FilterFunction[(Int, Int)] {
override def call(value: (Int, Int)): Boolean = value._1 > 0
}
val f2 = new FilterFunction[OtherTuple] {
override def call(value: OtherTuple): Boolean = value._2 > 0
}

val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 2)
}

test("FilterFunction and filter with the same object type") {
val f1 = new FilterFunction[(Int, Int)] {
override def call(value: (Int, Int)): Boolean = value._1 > 0
}
val f2 = (i: (Int, Int)) => i._2 > 0

val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 1)
}

test("FilterFunction and filter with different object types") {
val f1 = new FilterFunction[(Int, Int)] {
override def call(value: (Int, Int)): Boolean = value._1 > 0
}
val f2 = (i: OtherTuple) => i._2 > 0

val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 2)
}

test("filter and FilterFunction with the same object type") {
val f2 = (i: (Int, Int)) => i._1 > 0
val f1 = new FilterFunction[(Int, Int)] {
override def call(value: (Int, Int)): Boolean = value._2 > 0
}

val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 1)
}

test("filter and FilterFunction with different object types") {
val f2 = (i: (Int, Int)) => i._1 > 0
val f1 = new FilterFunction[OtherTuple] {
override def call(value: OtherTuple): Boolean = value._2 > 0
}

val query = testRelation.filter(f1).filter(f2).analyze
val optimized = Optimize.execute(query)
assert(optimized.collect { case t: TypedFilter => t }.length == 2)
}
Expand Down