jingz-db commented on code in PR #49488: URL: https://github.com/apache/spark/pull/49488#discussion_r1947164420
########## sql/connect/server/src/main/scala/org/apache/spark/sql/connect/planner/SparkConnectPlanner.scala: ########## @@ -679,6 +681,66 @@ class SparkConnectPlanner( rel.getGroupingExpressionsList, rel.getSortingExpressionsList) + if (rel.hasTransformWithStateInfo) { + val hasInitialState = !rel.getInitialGroupingExpressionsList.isEmpty && rel.hasInitialInput + + val twsInfo = rel.getTransformWithStateInfo + val statefulProcessorStr = twsInfo.getStatefulProcessorPayload Review Comment: It is actually `ByteString` type so I named it `statefulProcessorStr`. I see this is confusing naming, let me change it to `statefulProcessorByteStr`. -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org