ClickHouse/dbms/include/DB/Parsers/ASTFunction.h

66 lines
1.5 KiB
C
Raw Normal View History

2011-09-19 01:42:16 +00:00
#pragma once
2010-06-24 19:12:10 +00:00
#include <DB/Parsers/IAST.h>
2011-08-09 19:19:00 +00:00
#include <DB/Functions/IFunction.h>
2011-09-19 01:42:16 +00:00
#include <DB/AggregateFunctions/IAggregateFunction.h>
2010-06-24 19:12:10 +00:00
namespace DB
{
/** Применение функции или оператора
*/
class ASTFunction : public IAST
{
public:
/// имя функции
String name;
2011-08-13 21:05:18 +00:00
/// аргументы
2010-06-24 19:12:10 +00:00
ASTPtr arguments;
2011-11-06 04:21:09 +00:00
/// алиас, если есть
String alias;
2010-06-24 19:12:10 +00:00
2011-08-09 19:19:00 +00:00
/// сама функция
FunctionPtr function;
2011-09-19 01:42:16 +00:00
/// или агрегатная функция
AggregateFunctionPtr aggregate_function;
2011-09-24 20:32:41 +00:00
/// тип возвращаемого значения
DataTypePtr return_type;
/// номер столбца возвращаемого значения
size_t return_column_number;
2011-08-09 19:19:00 +00:00
2010-06-25 16:36:13 +00:00
ASTFunction() {}
2011-08-13 21:05:18 +00:00
ASTFunction(StringRange range_) : IAST(range_) {}
2011-08-09 19:19:00 +00:00
2011-09-26 01:50:32 +00:00
String getColumnName()
{
std::stringstream s;
s << name << "(";
for (ASTs::iterator it = arguments->children.begin(); it != arguments->children.end(); ++it)
{
if (it != arguments->children.begin())
s << ", ";
s << (*it)->getColumnName();
}
s << ")";
return s.str();
}
2011-09-25 03:37:09 +00:00
2011-11-06 04:21:09 +00:00
String getAlias() { return alias.empty() ? getColumnName() : alias; }
2011-08-09 19:19:00 +00:00
/** Получить текст, который идентифицирует этот элемент. */
String getID() { return "Function_" + name; }
2011-12-12 06:15:34 +00:00
ASTPtr clone() const
{
ASTFunction * res = new ASTFunction(*this);
res->children.clear();
if (arguments) { res->arguments = arguments->clone(); res->children.push_back(res->arguments); }
return res;
}
2010-06-24 19:12:10 +00:00
};
}