Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/3715#discussion_r116260594
--- Diff:
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/codegen/CodeGenerator.scala
---
@@ -698,14 +698,7 @@ class CodeGenerator(
s"void join(Object _in1, Object _in2,
org.apache.flink.util.Collector $collectorTerm)",
List(s"$inputTypeTerm1 $input1Term = ($inputTypeTerm1) _in1;",
s"$inputTypeTerm2 $input2Term = ($inputTypeTerm2) _in2;"))
- } else if (clazz == classOf[FilterFunction[_]]) {
- val baseClass = classOf[RichFilterFunction[_]]
- val inputTypeTerm = boxedTypeTermForTypeInfo(input1)
- (baseClass,
- s"boolean filter(Object _in1)",
- List(s"$inputTypeTerm $input1Term = ($inputTypeTerm) _in1;"))
- }
- else {
+ } else {
--- End diff --
please keep the original formatting as
```
}
else {
```
---
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.
---