mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-19 12:52:37 +00:00
19 lines
458 B
C++
19 lines
458 B
C++
|
#pragma once
|
||
|
#include <Parsers/ASTLiteral.h>
|
||
|
#include <Parsers/ASTExpressionList.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
Array getAggregateFunctionParametersArray(const ASTPtr & expression_list, const std::string & error_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);
|
||
|
|
||
|
}
|