mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
18 lines
443 B
C++
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);
|
|
|
|
}
|