We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fdf903 commit d8b5abcCopy full SHA for d8b5abc
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/nullFunctions.scala
@@ -39,7 +39,7 @@ case class Coalesce(children: Seq[Expression]) extends Expression {
39
} else {
40
val childTypes = children.map(c => s"$c: ${c.dataType}").mkString(", ")
41
throw new UnresolvedException(
42
- this, "Coalesce cannot have children of different types. $childTypes")
+ this, s"Coalesce cannot have children of different types. $childTypes")
43
}
44
45
override def eval(input: Row): Any = {
0 commit comments