Github user sunjincheng121 commented on a diff in the pull request:

    https://github.com/apache/flink/pull/3547#discussion_r106335062
  
    --- Diff: 
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/plan/logical/rel/LogicalWindowAggregate.scala
 ---
    @@ -18,8 +18,6 @@
     
     package org.apache.flink.table.plan.logical.rel
     
    -import java.util
    --- End diff --
    
    Your current package is `org.apache.flink.table.plan.logical.rel`, in this 
package there is a` org.apache.flink.table.plan.logical.rel.util`, this and 
`util .List` package conflicts. So you can try the following 2 way solution:
    solution1:
    ```
    import java.util.List
    groupSets: List[ImmutableBitSet],
    aggCalls: List[AggregateCall])
    ```
    solution2:
    ```
    import java.{util => JUtil}
    groupSets: JUtil.List[ImmutableBitSet],
    aggCalls: JUtil.List[AggregateCall])
    ```
    



---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to