fredia commented on code in PR #25125:
URL: https://github.com/apache/flink/pull/25125#discussion_r1777943929
##########
flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStStateRequestClassifier.java:
##########
@@ -111,6 +125,11 @@ private void
convertStateRequestsToForStDBRequests(StateRequest<?, ?, ?, ?> stat
(ForStInnerTable<?, ?, ?>)
stateRequest.getState();
dbPutRequests.add(innerTable.buildDBPutRequest(stateRequest));
return;
+ } else if (stateRequest.getState() instanceof
ForStAggregatingState) {
Review Comment:
`ForStAggregatingState` is a `ForStInnerTable`, this branch will be covered
by the previous one.
--
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]