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

    https://github.com/apache/flink/pull/3012#discussion_r100247899
  
    --- Diff: 
flink-tests/src/test/java/org/apache/flink/test/io/CsvReaderITCase.java ---
    @@ -122,6 +127,80 @@ public void testValueTypes() throws Exception {
                compareResultAsTuples(result, expected);
        }
     
    +   private int fullRowSize = 29;
    +   private String including = "0111111";
    +   private String fileContent =
    +           "1,2,3," + 4 + "," + 5.0d + "," + true +
    +           ",7,8,9,11,22,33,44,55,66,77,88,99,00," +
    +           "111,222,333,444,555,666,777,888,999,000\n" +
    +           "a,b,c," + 40 + "," + 50.0d + "," + false +
    +           ",g,h,i,aa,bb,cc,dd,ee,ff,gg,hh,ii,mm," +
    +           "aaa,bbb,ccc,ddd,eee,fff,ggg,hhh,iii,mmm\n";
    --- End diff --
    
    A lot of concatenations, the fileContent equals 
    ```
    "1,2,3,4,5.0,true" +
    ",7,8,9,11,22,33,44,55,66,77,88,99,00," +
    "111,222,333,444,555,666,777,888,999,000\n" +
    "a,b,c,40,50.0,false," +
    "g,h,i,aa,bb,cc,dd,ee,ff,gg,hh,ii,mm," +
    "aaa,bbb,ccc,ddd,eee,fff,ggg,hhh,iii,mmm\n"
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to