fredia commented on code in PR #24812:
URL: https://github.com/apache/flink/pull/24812#discussion_r1628941486


##########
flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStDBGetRequest.java:
##########
@@ -34,12 +34,35 @@ public class ForStDBGetRequest<K, V> {
 
     private final K key;
     private final ForStInnerTable<K, V> table;
-    private final InternalStateFuture<V> future;
+    private final InternalStateFuture future;
 
-    private ForStDBGetRequest(K key, ForStInnerTable<K, V> table, 
InternalStateFuture<V> future) {
+    private final boolean toBoolean;
+    private final boolean checkMapEmpty;
+
+    private int keyGroupPrefixBytes = 1;
+
+    private ForStDBGetRequest(
+            K key,
+            ForStInnerTable<K, V> table,
+            InternalStateFuture future,
+            boolean toBoolean,
+            boolean checkMapEmpty) {
         this.key = key;
         this.table = table;
         this.future = future;
+        this.toBoolean = toBoolean;

Review Comment:
   👍,I added `ForStDBMapCheckRequest` for this kind of operation.



-- 
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

Reply via email to