Github user viirya commented on a diff in the pull request:
https://github.com/apache/spark/pull/19720#discussion_r150405184
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/nullExpressions.scala
---
@@ -90,7 +86,12 @@ case class Coalesce(children: Seq[Expression]) extends
Expression {
}
}
"""
- }.mkString("\n"))
+ }
+
+ ev.copy(code = s"""
+ ${ev.isNull} = true;
+ ${ev.value} = ${ctx.defaultValue(dataType)};
+ ${ctx.splitExpressions(ctx.INPUT_ROW, evals)}""")
--- End diff --
We can only split the expressions when they are created from a row object.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]