Liya Fan created FLINK-13043:
--------------------------------
Summary: Fix the bug of parsing Dewey number from string
Key: FLINK-13043
URL:
https://issues.apache.org/jira/browse/FLINK-13043 Project: Flink
Issue Type: Bug
Components: Library / CEP
Reporter: Liya Fan
Assignee: Liya Fan
There is a bug in the current implementation for parsing the Dewey number:
String[] splits = deweyNumberString.split("\\.");
if (splits.length == 0) {
return new DeweyNumber(Integer.parseInt(deweyNumberString));
}
The length in the if condition should be 1 instead of 0.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)