mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
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);
|
|
|
|
}
|