| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You under the Apache License, Version 2.0 |
| * (the "License"); you may not use this file except in compliance with |
| * the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| #pragma once |
| #include <optional> |
| #include <Parser/RelParsers/RelParser.h> |
| #include <Processors/QueryPlan/QueryPlan.h> |
| #include <substrait/algebra.pb.h> |
| |
| namespace local_engine |
| { |
| |
| class GroupLimitRelParser : public RelParser |
| { |
| public: |
| explicit GroupLimitRelParser(ParserContextPtr parser_context_); |
| ~GroupLimitRelParser() override = default; |
| DB::QueryPlanPtr |
| parse(DB::QueryPlanPtr current_plan_, const substrait::Rel & rel, std::list<const substrait::Rel *> & rel_stack_) override; |
| std::optional<const substrait::Rel *> getSingleInput(const substrait::Rel & rel) override { return &rel.windowgrouplimit().input(); } |
| }; |
| |
| /// Similar to WindowRelParser. Some differences |
| /// 1. cannot support aggregate functions. only support window functions: row_number, rank, dense_rank |
| /// 2. row_number, rank and dense_rank are mapped to new variants |
| /// 3. the output columns don't contain window function results |
| class WindowGroupLimitRelParser : public RelParser |
| { |
| public: |
| explicit WindowGroupLimitRelParser(ParserContextPtr parser_context_); |
| ~WindowGroupLimitRelParser() override = default; |
| DB::QueryPlanPtr |
| parse(DB::QueryPlanPtr current_plan_, const substrait::Rel & rel, std::list<const substrait::Rel *> & rel_stack_) override; |
| std::optional<const substrait::Rel *> getSingleInput(const substrait::Rel & rel) override { return &rel.windowgrouplimit().input(); } |
| |
| private: |
| DB::QueryPlanPtr current_plan; |
| String window_function_name; |
| }; |
| |
| class AggregateGroupLimitRelParser : public RelParser |
| { |
| public: |
| explicit AggregateGroupLimitRelParser(ParserContextPtr parser_context_); |
| ~AggregateGroupLimitRelParser() override = default; |
| DB::QueryPlanPtr |
| parse(DB::QueryPlanPtr current_plan_, const substrait::Rel & rel, std::list<const substrait::Rel *> & rel_stack_) override; |
| std::optional<const substrait::Rel *> getSingleInput(const substrait::Rel & rel) override { return &rel.windowgrouplimit().input(); } |
| |
| private: |
| DB::QueryPlanPtr current_plan; |
| const substrait::WindowGroupLimitRel * win_rel_def; |
| String aggregate_function_name; |
| size_t limit = 0; |
| DB::SharedHeader input_header; |
| // Field indexes at the input header which are used as partition keys |
| std::vector<size_t> partition_fields; |
| // Field indexes at the input header which are used as sort keys |
| std::vector<size_t> sort_fields; |
| DB::Names aggregate_grouping_keys; |
| String aggregate_tuple_column_name; |
| |
| String getAggregateFunctionName(const String & window_function_name); |
| |
| void collectPartitionAndSortFields(); |
| void prePrejectionForAggregateArguments(DB::QueryPlan & plan); |
| void addGroupLmitAggregationStep(DB::QueryPlan & plan); |
| String parseSortDirections(const google::protobuf::RepeatedPtrField<substrait::SortField> & sort_fields); |
| DB::AggregateDescription buildAggregateDescription(DB::QueryPlan & plan); |
| void postProjectionForExplodingArrays(DB::QueryPlan & plan); |
| |
| void addSortStep(DB::QueryPlan & plan); |
| void addWindowLimitStep(DB::QueryPlan & plan); |
| }; |
| } |