ericm-db commented on code in PR #44884: URL: https://github.com/apache/spark/pull/44884#discussion_r1475204518
########## sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/TransformWithStateExec.scala: ########## @@ -44,23 +48,25 @@ import org.apache.spark.util.CompletionIterator * @param batchTimestampMs processing timestamp of the current batch. * @param eventTimeWatermarkForLateEvents event time watermark for filtering late events * @param eventTimeWatermarkForEviction event time watermark for state eviction + * @param isStreaming defines whether the query is streaming or batch * @param child the physical plan for the underlying data */ case class TransformWithStateExec( - keyDeserializer: Expression, - valueDeserializer: Expression, - groupingAttributes: Seq[Attribute], - dataAttributes: Seq[Attribute], - statefulProcessor: StatefulProcessor[Any, Any, Any], - timeoutMode: TimeoutMode, - outputMode: OutputMode, - keyEncoder: ExpressionEncoder[Any], - outputObjAttr: Attribute, - stateInfo: Option[StatefulOperatorStateInfo], - batchTimestampMs: Option[Long], - eventTimeWatermarkForLateEvents: Option[Long], - eventTimeWatermarkForEviction: Option[Long], - child: SparkPlan) + keyDeserializer: Expression, Review Comment: Didn't realize I had deviated from this, thanks for catching it. -- 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]
