This is an automated email from the ASF dual-hosted git repository.
yuanmei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 2b8b660 [FLINK-26766][Runtime/StateBackends] Fix
ChangelogStateHandleStreamImpl#getIntersection
2b8b660 is described below
commit 2b8b66002ff17be8a02a9f0612b1a310ea8bf3e7
Author: wangfeifan <[email protected]>
AuthorDate: Mon Mar 21 17:42:54 2022 +0800
[FLINK-26766][Runtime/StateBackends] Fix
ChangelogStateHandleStreamImpl#getIntersection
---
.../flink/runtime/state/changelog/ChangelogStateHandleStreamImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/flink-runtime/src/main/java/org/apache/flink/runtime/state/changelog/ChangelogStateHandleStreamImpl.java
b/flink-runtime/src/main/java/org/apache/flink/runtime/state/changelog/ChangelogStateHandleStreamImpl.java
index f9fd504..5a996b2 100644
---
a/flink-runtime/src/main/java/org/apache/flink/runtime/state/changelog/ChangelogStateHandleStreamImpl.java
+++
b/flink-runtime/src/main/java/org/apache/flink/runtime/state/changelog/ChangelogStateHandleStreamImpl.java
@@ -100,7 +100,7 @@ public final class ChangelogStateHandleStreamImpl
implements ChangelogStateHandl
@Nullable
@Override
public KeyedStateHandle getIntersection(KeyGroupRange keyGroupRange) {
- KeyGroupRange offsets = keyGroupRange.getIntersection(keyGroupRange);
+ KeyGroupRange offsets =
this.keyGroupRange.getIntersection(keyGroupRange);
if (offsets.getNumberOfKeyGroups() == 0) {
return null;
}