mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/ASTWithAlias.h>
|
|
#include <Parsers/ASTExpressionList.h>
|
|
#include <Parsers/ASTSelectWithUnionQuery.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** AST for function application or operator.
|
|
*/
|
|
class ASTFunction : public ASTWithAlias
|
|
{
|
|
public:
|
|
String name;
|
|
ASTPtr arguments;
|
|
/// parameters - for parametric aggregate function. Example: quantile(0.9)(x) - what in first parens are 'parameters'.
|
|
ASTPtr parameters;
|
|
|
|
/// do not print empty parentheses if there are no args - compatibility with new AST for data types and engine names.
|
|
bool no_empty_args = false;
|
|
|
|
/** Get text identifying the AST node. */
|
|
String getID(char delim) const override;
|
|
|
|
ASTPtr clone() const override;
|
|
|
|
void updateTreeHashImpl(SipHash & hash_state) const override;
|
|
|
|
ASTSelectWithUnionQuery * tryGetQueryArgument() const;
|
|
|
|
ASTPtr toLiteral() const; // Try to convert functions like Array or Tuple to a literal form.
|
|
|
|
protected:
|
|
void formatImplWithoutAlias(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
|
void appendColumnNameImpl(WriteBuffer & ostr) const override;
|
|
};
|
|
|
|
|
|
template <typename... Args>
|
|
std::shared_ptr<ASTFunction> makeASTFunction(const String & name, Args &&... args)
|
|
{
|
|
auto function = std::make_shared<ASTFunction>();
|
|
|
|
function->name = name;
|
|
function->arguments = std::make_shared<ASTExpressionList>();
|
|
function->children.push_back(function->arguments);
|
|
|
|
function->arguments->children = { std::forward<Args>(args)... };
|
|
|
|
return function;
|
|
}
|
|
|
|
}
|