Github user greghogan commented on a diff in the pull request:
https://github.com/apache/flink/pull/3999#discussion_r118791491
--- Diff:
flink-java8/src/test/java/org/apache/flink/test/api/java/operators/lambdas/FilterITCase.java
---
@@ -35,27 +38,38 @@
public static DataSet<Tuple3<Integer, Long, String>>
get3TupleDataSet(ExecutionEnvironment env) {
List<Tuple3<Integer, Long, String>> data = new
ArrayList<Tuple3<Integer, Long, String>>();
- data.add(new Tuple3<Integer, Long, String>(1,1l,"Hi"));
- data.add(new Tuple3<Integer, Long, String>(2,2l,"Hello"));
- data.add(new Tuple3<Integer, Long, String>(3,2l,"Hello world"));
- data.add(new Tuple3<Integer, Long, String>(4,3l,"Hello world,
how are you?"));
- data.add(new Tuple3<Integer, Long, String>(5,3l,"I am fine."));
- data.add(new Tuple3<Integer, Long, String>(6,3l,"Luke
Skywalker"));
- data.add(new Tuple3<Integer, Long, String>(7,4l,"Comment#1"));
- data.add(new Tuple3<Integer, Long, String>(8,4l,"Comment#2"));
- data.add(new Tuple3<Integer, Long, String>(9,4l,"Comment#3"));
- data.add(new Tuple3<Integer, Long, String>(10,4l,"Comment#4"));
- data.add(new Tuple3<Integer, Long, String>(11,5l,"Comment#5"));
- data.add(new Tuple3<Integer, Long, String>(12,5l,"Comment#6"));
- data.add(new Tuple3<Integer, Long, String>(13,5l,"Comment#7"));
- data.add(new Tuple3<Integer, Long, String>(14,5l,"Comment#8"));
- data.add(new Tuple3<Integer, Long, String>(15,5l,"Comment#9"));
- data.add(new Tuple3<Integer, Long, String>(16,6l,"Comment#10"));
- data.add(new Tuple3<Integer, Long, String>(17,6l,"Comment#11"));
- data.add(new Tuple3<Integer, Long, String>(18,6l,"Comment#12"));
- data.add(new Tuple3<Integer, Long, String>(19,6l,"Comment#13"));
- data.add(new Tuple3<Integer, Long, String>(20,6l,"Comment#14"));
- data.add(new Tuple3<Integer, Long, String>(21,6l,"Comment#15"));
+ data.add(new Tuple3<>(1, 1L, "Hi"));
+ data.add(new Tuple3<>(2, 2L, "Hello"));
+ data.add(new Tuple3<>(3, 2L, "Hello world"));
+ data.add(new Tuple3<>(4, 3L, "Hello world, how are you?"));
+ data.add(new Tuple3<>(5, 3L, "I am fine."));
+ data.add(new Tuple3<>(6, 3L, "Luke Skywalker"));
+ data.add(new Tuple3<>(7, 4L, "Comment#1"));
+ data.add(new Tuple3<>(8, 4L, "Comment#2"));
+ data.add(new Tuple3<>(9, 4L,
--- End diff --
Formatting.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---