HeartSaVioR commented on code in PR #56057: URL: https://github.com/apache/spark/pull/56057#discussion_r3294038628
########## sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/LogicalPlan.scala: ########## @@ -80,6 +80,14 @@ abstract class LogicalPlan def isStreaming: Boolean = _isStreaming private[this] lazy val _isStreaming = children.exists(_.isStreaming) + /** Marks if a streaming node is a stateful operator. */ + def isStateful: Boolean = false + + /** Marks if a subplan contains a stateful operator. */ Review Comment: Done, [e1e208e](https://github.com/apache/spark/pull/56057/commits/e1e208e3385de8119a5146694c79954e92b29e62) As commented as above, 2 isn't addressed. FYI. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
