ericm-db commented on code in PR #47508: URL: https://github.com/apache/spark/pull/47508#discussion_r1694439733
########## sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/state/StateStoreErrors.scala: ########## @@ -173,8 +173,51 @@ object StateStoreErrors { StateStoreProviderDoesNotSupportFineGrainedReplay = { new StateStoreProviderDoesNotSupportFineGrainedReplay(inputClass) } + + + def invalidConfigChangedAfterRestart(configName: String, oldConfig: String, newConfig: String): + StateStoreInvalidConfigAfterRestart = { + new StateStoreInvalidConfigAfterRestart(configName, oldConfig, newConfig) + } + + def duplicateStateVariableDefined(stateName: String): + StateStoreDuplicateStateVariableDefined = { + new StateStoreDuplicateStateVariableDefined(stateName) + } + + def invalidVariableTypeChange(stateName: String, oldType: String, newType: String): + StateStoreInvalidVariableTypeChange = { + new StateStoreInvalidVariableTypeChange(stateName, oldType, newType) + } } +class StateStoreDuplicateStateVariableDefined(stateName: String) + extends SparkRuntimeException( + errorClass = "STATE_STORE_DUPLICATE_STATE_VARIABLE_DEFINED", Review Comment: Done -- 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