Github user chenghao-intel commented on the pull request: https://github.com/apache/spark/pull/5154#issuecomment-85361005 I mean we can do something like ```scala val f = children.size match { case 1 => val func = function.asInstanceOf[(Any) => Any] val child0 = children(0) (input: Row) => { func(ScalaReflection.convertToScala(child0.eval(input), child0.dataType))) } case 2 => val func = function.asInstanceOf[(Any) => Any] val child0 = children(0) val child1 = children(1) (input: Row) => { func(ScalaReflection.convertToScala(child0.eval(input), child0.dataType)) ScalaReflection.convertToScala(child1.eval(input), child1.dataType))) } } def eval(input: Row) = f(input) ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org