jectpro7 commented on code in PR #25125:
URL: https://github.com/apache/flink/pull/25125#discussion_r1777919463


##########
flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStStateRequestClassifier.java:
##########
@@ -99,6 +99,20 @@ private void 
convertStateRequestsToForStDBRequests(StateRequest<?, ?, ?, ?> stat
                     
dbPutRequests.add(forStMapState.buildDBBunchPutRequest(stateRequest));
                     return;
                 }
+            case AGGREGATING_GET:
+                {
+                    ForStAggregatingState<?, ?, ?, ?, ?> state =
+                            (ForStAggregatingState<?, ?, ?, ?, ?>) 
stateRequest.getState();
+                    dbGetRequests.add(state.buildDBGetRequest(stateRequest));
+                    return;
+                }
+            case AGGREGATING_PUT:

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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to