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

    https://github.com/apache/spark/pull/19977#discussion_r158935640
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/TypeCoercion.scala
 ---
    @@ -658,6 +660,34 @@ object TypeCoercion {
         }
       }
     
    +  /**
    +   * Coerces the types of [[Concat]] children to expected ones.
    +   *
    +   * If `spark.sql.function.concatBinaryAsString` is false and all 
children types are binary,
    +   * the expected types are binary. Otherwise, the expected ones are 
strings.
    +   */
    +  case class ConcatCoercion(conf: SQLConf) extends TypeCoercionRule {
    +
    +    private def typeCastToString(c: Concat): Concat = {
    +      val newChildren = c.children.map { e =>
    +        ImplicitTypeCasts.implicitCast(e, StringType).getOrElse(e)
    +      }
    +      c.copy(children = newChildren)
    +    }
    +
    +    override protected def coerceTypes(plan: LogicalPlan): LogicalPlan = 
plan transform { case p =>
    +      p transformExpressionsUp {
    +        // Skip nodes if unresolved or empty children
    +        case c @ Concat(children) if !c.childrenResolved || 
children.isEmpty => c
    +
    --- End diff --
    
    The empty line.


---

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

Reply via email to