ClickHouse/src/Planner/PlannerAggregation.h
2023-01-19 19:06:02 +01:00

18 lines
443 B
C++

#pragma once
#include <Analyzer/IQueryTreeNode.h>
#include <Analyzer/FunctionNode.h>
#include <Planner/PlannerContext.h>
#include <Planner/PlannerActionsVisitor.h>
#include <Processors/QueryPlan/AggregatingStep.h>
namespace DB
{
/// Extract aggregate descriptions from aggregate function nodes
AggregateDescriptions extractAggregateDescriptions(const QueryTreeNodes & aggregate_function_nodes, const PlannerContext & planner_context);
}