Github user zuyu commented on a diff in the pull request: https://github.com/apache/incubator-quickstep/pull/39#discussion_r68328028 --- Diff: query_optimizer/resolver/Resolver.cpp --- @@ -209,6 +227,26 @@ struct Resolver::QueryAggregationInfo { std::vector<E::AliasPtr> aggregate_expressions; }; +struct Resolver::WindowPlan { + explicit WindowPlan(E::WindowInfo window_info_in, + L::LogicalPtr logical_plan_in) + : window_info(window_info_in), + logical_plan(logical_plan_in) {} + + const E::WindowInfo window_info; + const L::LogicalPtr logical_plan; +}; + +struct Resolver::WindowAggregationInfo { + explicit WindowAggregationInfo(const std::unordered_map<std::string, WindowPlan> window_map_in) --- End diff -- Please add a reference for `window_map_in`.
--- 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. ---