[
https://issues.apache.org/jira/browse/FLINK-9593?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16524982#comment-16524982
]
ASF GitHub Bot commented on FLINK-9593:
---------------------------------------
Github user kl0u commented on a diff in the pull request:
https://github.com/apache/flink/pull/6171#discussion_r198472975
--- Diff:
flink-libraries/flink-cep/src/main/java/org/apache/flink/cep/nfa/NFAState.java
---
@@ -79,18 +98,18 @@ public boolean equals(Object o) {
return false;
}
NFAState nfaState = (NFAState) o;
- return Objects.equals(computationStates,
nfaState.computationStates);
+ return Objects.equals(partialMatches, nfaState.partialMatches);
}
@Override
public int hashCode() {
- return Objects.hash(computationStates, stateChanged);
+ return Objects.hash(partialMatches, stateChanged);
--- End diff --
Same as above.
> Unify AfterMatch semantics with SQL MATCH_RECOGNIZE
> ---------------------------------------------------
>
> Key: FLINK-9593
> URL: https://issues.apache.org/jira/browse/FLINK-9593
> Project: Flink
> Issue Type: Improvement
> Components: CEP
> Reporter: Dawid Wysakowicz
> Assignee: Dawid Wysakowicz
> Priority: Major
> Labels: pull-request-available
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)