Github user mgaido91 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19728#discussion_r150564483
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/stringExpressions.scala
 ---
    @@ -126,18 +143,41 @@ case class ConcatWs(children: Seq[Expression])
           // All children are strings. In that case we can construct a fixed 
size array.
           val evals = children.map(_.genCode(ctx))
     
    -      val inputs = evals.map { eval =>
    -        s"${eval.isNull} ? (UTF8String) null : ${eval.value}"
    -      }.mkString(", ")
    -
    -      ev.copy(evals.map(_.code).mkString("\n") + s"""
    -        UTF8String ${ev.value} = UTF8String.concatWs($inputs);
    +      val argNums = evals.length
    +      val args = ctx.freshName("args")
    +
    +      val inputs = evals.tail.zipWithIndex.map { case (eval, index) =>
    +        if (eval.isNull != "true") {
    +          s"""
    +           ${eval.code}
    --- End diff --
    
    nit: in this and the next 4 lines an indentation space is missing if I am 
not wrong.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to