Github user uce commented on a diff in the pull request:
https://github.com/apache/incubator-flink/pull/194#discussion_r20928980
--- Diff:
flink-examples/flink-java-examples/src/main/java/org/apache/flink/examples/java/relational/TPCHQuery10.java
---
@@ -146,9 +146,9 @@ public boolean filter(Tuple4<Integer, Double, Double,
String> l) {
DataSet<Tuple2<Integer, Double>> revenueByCustomer =
ordersFilteredByYear.joinWithHuge(lineitemsFilteredByFlag)
.where(0).equalTo(0)
-
.projectFirst(1).projectSecond(1)
-
.types(Integer.class, Double.class)
--- End diff --
This example still contains calls to `types(Class<?>...)`. Is this on
purpose? I think we should have the call out of all examples. Having them in
the tests is OK though. :)
---
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.
---