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

    https://github.com/apache/spark/pull/11647#discussion_r56102487
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Expression.scala
 ---
    @@ -152,7 +152,10 @@ abstract class Expression extends TreeNode[Expression] 
{
        * `deterministic` expressions where `this.canonicalized == 
other.canonicalized` will always
        * evaluate to the same result.
        */
    -   lazy val canonicalized: Expression = Canonicalize.execute(this)
    +  lazy val canonicalized: Expression = {
    +    val canonicalizedChildred = children.map(_.canonicalized)
    --- End diff --
    
    Ah, thanks. Since this is merged and it is small, I won't send a PR just 
for this, but I will include this fixing in other PR.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to