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

    https://github.com/apache/spark/pull/21854#discussion_r206595006
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
 ---
    @@ -2124,6 +2124,9 @@ class Analyzer(
         override def apply(plan: LogicalPlan): LogicalPlan = plan.transformUp {
           case p if p.resolved => p
           case p => p transformExpressionsUp {
    +        // Produces a placeholder random seed for streaming query, the 
real random seed
    +        // is given at the beginning of Optimizer.
    +        case Uuid(None) if p.isStreaming => Uuid(Some(-1))
    --- End diff --
    
    This change is not necessary. Right?


---

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

Reply via email to