[ 
https://issues.apache.org/jira/browse/FLINK-8331?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16306921#comment-16306921
 ] 

ASF GitHub Bot commented on FLINK-8331:
---------------------------------------

Github user fhueske commented on a diff in the pull request:

    https://github.com/apache/flink/pull/5218#discussion_r159128212
  
    --- Diff: 
flink-core/src/test/java/org/apache/flink/types/parser/FieldParserTest.java ---
    @@ -43,4 +43,38 @@ public void testEndsWithDelimiter() throws Exception {
                assertFalse(FieldParser.endsWithDelimiter(bytes, 3, delim));
        }
     
    +   @Test
    +   public void testNextStringEndPos() throws Exception {
    --- End diff --
    
    It would be good if the test would cover more corner cases for 
`nextStringEndPos()`, such as
    
    - multi-char delimiter
    - field with trailing delimiter
    - field without training delimiter
    - empty field
    
    For example with test date like this
    
    ```
    byte[] bytes1 = "field1|#|field2".getBytes();
    byte[] bytes2 = "field3|#|".getBytes();
    
    byte[] delim = "|#|".getBytes();
    ```


> FieldParsers do not correctly set EMPT_COLUMN error state
> ---------------------------------------------------------
>
>                 Key: FLINK-8331
>                 URL: https://issues.apache.org/jira/browse/FLINK-8331
>             Project: Flink
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.5.0, 1.4.1
>            Reporter: Fabian Hueske
>            Assignee: sunjincheng
>
> Some {{FieldParser}} do not correctly set the EMPTY_COLUMN error state if a 
> field is empty.
> Instead, they try to parse the field value from an empty String which fails, 
> e.g., in case of the {{DoubleParser}} with a {{NumberFormatException}}.
> The {{RowCsvInputFormat}} has a flag to interpret empty fields as {{null}} 
> values. The implementation requires that all {{FieldParser}} correctly return 
> the EMPTY_COLUMN error state in case of an empty field.
> Affected {{FieldParser}}:
> - BigDecParser
> - BigIntParser
> - DoubleParser
> - FloatParser
> - SqlDateParser
> - SqlTimeParser
> - SqlTimestampParser



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to