Skip to content

Commit bed96f4

Browse files
committed
Address comments
1 parent dd3088f commit bed96f4

File tree

1 file changed

+2
-2
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions

1 file changed

+2
-2
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/predicates.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import org.apache.spark.sql.types._
3232

3333

3434
/**
35-
* Interface for generated/interpreted predicate
35+
* A base class for generated/interpreted predicate
3636
*/
3737
abstract class BasePredicate {
3838
def eval(r: InternalRow): Boolean
@@ -81,7 +81,7 @@ object Predicate extends CodeGeneratorWithInterpretedFallback[Expression, BasePr
8181
}
8282

8383
override protected def createInterpretedObject(in: Expression): BasePredicate = {
84-
InterpretedPredicate.create(in)
84+
InterpretedPredicate(in)
8585
}
8686

8787
/**

0 commit comments

Comments
 (0)