Github user kiszk commented on a diff in the pull request:
https://github.com/apache/spark/pull/20797#discussion_r174001998
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/objects/objects.scala
---
@@ -266,8 +266,26 @@ case class Invoke(
override def nullable: Boolean = targetObject.nullable || needNullCheck
|| returnNullable
override def children: Seq[Expression] = targetObject +: arguments
- override def eval(input: InternalRow): Any =
- throw new UnsupportedOperationException("Only code-generated
evaluation is supported.")
+ override def eval(input: InternalRow): Any = {
+ val obj = targetObject.eval(input)
+ val args = arguments.map(e => e.eval(input).asInstanceOf[Object])
+ val argClasses =
CallMethodViaReflection.expressionJavaClasses(arguments)
+ val method = obj.getClass.getDeclaredMethod(functionName, argClasses :
_*)
+ if (needNullCheck && args.exists(_ == null)) {
+ // return null if one of arguments is null
+ null
+ } else {
+ val ret = method.invoke(obj, args: _*)
+
+ if (CodeGenerator.defaultValue(dataType) == "null") {
+ ret
+ } else {
+ // cast a primitive value using Boxed class
+ val boxedClass =
CallMethodViaReflection.typeBoxedJavaMapping(dataType)
+ boxedClass.cast(ret)
--- End diff --
The point is where we want to cause a cast exception. With this code, an
exception will occur at this class. Without this code, an exception will occur
anywhere in the code.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]