mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
91bf938075
590 -> 537
24 lines
546 B
C++
24 lines
546 B
C++
#pragma once
|
|
|
|
#include <Interpreters/Context_fwd.h>
|
|
#include <Parsers/ASTExpressionList.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
Array getAggregateFunctionParametersArray(
|
|
const ASTPtr & expression_list,
|
|
const std::string & error_context,
|
|
ContextPtr context);
|
|
|
|
void getAggregateFunctionNameAndParametersArray(
|
|
const std::string & aggregate_function_name_with_params,
|
|
std::string & aggregate_function_name,
|
|
Array & aggregate_function_parameters,
|
|
const std::string & error_context,
|
|
ContextPtr context);
|
|
|
|
}
|