Zakelly commented on code in PR #26245: URL: https://github.com/apache/flink/pull/26245#discussion_r1983091768
########## flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStDBMapValueIterRequest.java: ########## @@ -56,7 +56,10 @@ public Collection<UV> deserializeElement(List<RawEntry> entries, int userKeyOffs throws IOException { Collection<UV> deserializedEntries = new ArrayList<>(entries.size()); for (RawEntry en : entries) { - deserializedEntries.add(deserializeUserValue(en.rawValueBytes)); + UV userValue = deserializeUserValue(en.rawValueBytes); Review Comment: It is not the same actually. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org