Github user aljoscha commented on a diff in the pull request:
https://github.com/apache/flink/pull/5230#discussion_r163850320
--- Diff:
flink-runtime/src/test/java/org/apache/flink/runtime/state/OperatorStateBackendTest.java
---
@@ -753,4 +935,27 @@ private static Environment createMockEnvironment() {
when(env.getUserClassLoader()).thenReturn(OperatorStateBackendTest.class.getClassLoader());
return env;
}
+
+ private <K, V> Map<K, V> retrieveBroadcastState(
--- End diff --
Can this not use the normal restore functionality of the backend?
---