[ https://issues.apache.org/jira/browse/FLINK-8689?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16452411#comment-16452411 ]
ASF GitHub Bot commented on FLINK-8689: --------------------------------------- Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/5555#discussion_r184039407 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/codegen/AggregationCodeGenerator.scala --- @@ -207,112 +241,164 @@ class AggregationCodeGenerator( } } + /** - * Create DataView Term, for example, acc1_map_dataview. - * - * @param aggIndex index of aggregate function - * @param fieldName field name of DataView - * @return term to access [[MapView]] or [[ListView]] + * Add all data view for all distinct filters defined by aggregation functions. */ - def createDataViewTerm(aggIndex: Int, fieldName: String): String = { - s"acc${aggIndex}_${fieldName}_dataview" + def addDistinctFilterDataViews(): Unit = { + val descMapping: Map[String, StateDescriptor[_, _]] = distinctAggs --- End diff -- can be moved into the `if` branch (like in `addAccumulatorDataViews`) > Add runtime support of distinct filter using MapView > ----------------------------------------------------- > > Key: FLINK-8689 > URL: https://issues.apache.org/jira/browse/FLINK-8689 > Project: Flink > Issue Type: Sub-task > Reporter: Rong Rong > Assignee: Rong Rong > Priority: Major > > This ticket should cover distinct aggregate function support to codegen for > *AggregateCall*, where *isDistinct* fields is set to true. > This can be verified using the following SQL, which is not currently > producing correct results. > {code:java} > SELECT > a, > SUM(b) OVER (PARTITION BY a ORDER BY proctime ROWS BETWEEN 5 PRECEDING AND > CURRENT ROW) > FROM > MyTable{code} > > -- This message was sent by Atlassian JIRA (v7.6.3#76005)