Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/3733#discussion_r113048507
--- Diff:
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/runtime/aggregate/AggregateUtil.scala
---
@@ -159,18 +174,22 @@ object AggregateUtil {
* @param generator code generator instance
* @param namedAggregates List of calls to aggregate functions and
their output field names
* @param inputType Input row type
+ * @param inputTypeInfo Input DataStream row type
+ * @param returnTypeInfo Return DataStream row type
* @param precedingOffset the preceding offset
- * @param isRowsClause It is a tag that indicates whether the OVER
clause is ROWS clause
+ * @param isRowsClause It is a tag that indicates whether the OVER
clause is ROWS clause
* @param isRowTimeType It is a tag that indicates whether the time
type is rowTimeType
* @return [[org.apache.flink.streaming.api.functions.ProcessFunction]]
*/
- private[flink] def createBoundedOverProcessFunction(
+ private[flink] def createBoundedOverProcessFunction[T](
generator: CodeGenerator,
namedAggregates: Seq[CalcitePair[AggregateCall, String]],
inputType: RelDataType,
+ inputTypeInfo: TypeInformation[T],
--- End diff --
remove new type info parameters.
---
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.
---