cuiyanxiang created SPARK-50509:
-----------------------------------

             Summary: Spark build failure
                 Key: SPARK-50509
                 URL: https://issues.apache.org/jira/browse/SPARK-50509
             Project: Spark
          Issue Type: Bug
          Components: Build, SQL
    Affects Versions: 3.5.3
            Reporter: cuiyanxiang
             Fix For: 3.5.4


DeduplicateWithinWatermark
 
overriding lazy value references in class QueryPlan of type 
org.apache.spark.sql.catalyst.expressions.AttributeSet; method references needs 
to be a stable, immutable value
 
old
{code:java}
override def references: AttributeSet = AttributeSet(keys) ++
  
AttributeSet(child.output.filter(_.metadata.contains(EventTimeWatermark.delayKey)))
 {code}
 
 
change to 
{code:java}
override lazy val references: AttributeSet = AttributeSet(keys) ++
AttributeSet(child.output.filter(_.metadata.contains(EventTimeWatermark.delayKey)))
 {code}
 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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

Reply via email to