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

    https://github.com/apache/flink/pull/2623#discussion_r85368023
  
    --- Diff: 
flink-tests/src/test/java/org/apache/flink/test/javaApiOperators/util/CollectionDataSets.java
 ---
    @@ -710,7 +712,103 @@ public String toString() {
                pwc2.bigInt = 
BigInteger.valueOf(Long.MAX_VALUE).multiply(BigInteger.TEN);
                pwc2.scalaBigInt = BigInt.int2bigInt(31104000);
                pwc2.bigDecimalKeepItNull = null;
    -           
    +
    +           GregorianCalendar gcl2 = new GregorianCalendar(1976, 4, 3);
    +           pwc2.sqlDate = new java.sql.Date(gcl2.getTimeInMillis()); // 
1976
    +
    +
    +           data.add(pwc1);
    +           data.add(pwc2);
    +
    +           return env.fromCollection(data);
    +   }
    +
    +   public static DataSet<PojoWithCollection> 
getPojoWithArraysAsListCollection(ExecutionEnvironment env) {
    --- End diff --
    
    Are these still needed any more by the tests?


---
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