You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Liya Fan (JIRA)" <ji...@apache.org> on 2019/07/01 10:59:00 UTC

[jira] [Created] (FLINK-13043) Fix the bug of parsing Dewey number from string

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)