ClickHouse/dbms/include/DB/Parsers/ASTLiteral.h
2011-09-26 01:50:32 +00:00

30 lines
685 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;
ASTLiteral() {}
ASTLiteral(StringRange range_, const Field & value_) : IAST(range_), value(value_) {}
String getColumnName() { return boost::apply_visitor(FieldVisitorToString(), value); }
/** Получить текст, который идентифицирует этот элемент. */
String getID() { return "Literal_" + boost::apply_visitor(FieldVisitorDump(), value); }
};
}