mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
36 lines
868 B
C++
36 lines
868 B
C++
#pragma once
|
|
|
|
#include <DB/Core/Field.h>
|
|
#include <DB/DataTypes/IDataType.h>
|
|
#include <DB/Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Литерал (атомарный) - число, строка, NULL
|
|
*/
|
|
class ASTLiteral : public IAST
|
|
{
|
|
public:
|
|
Field value;
|
|
/// тип
|
|
DataTypePtr type;
|
|
/// алиас, если есть
|
|
String alias;
|
|
|
|
ASTLiteral() {}
|
|
ASTLiteral(StringRange range_, const Field & value_) : IAST(range_), value(value_) {}
|
|
|
|
String getColumnName() const { return apply_visitor(FieldVisitorToString(), value); }
|
|
|
|
String getAlias() const { return alias.empty() ? getColumnName() : alias; }
|
|
|
|
/** Получить текст, который идентифицирует этот элемент. */
|
|
String getID() const { return "Literal_" + apply_visitor(FieldVisitorDump(), value); }
|
|
|
|
ASTPtr clone() const { return new ASTLiteral(*this); }
|
|
};
|
|
|
|
}
|