ClickHouse/dbms/src/Parsers/ASTLiteral.h

35 lines
881 B
C++
Raw Normal View History

2011-09-26 01:50:32 +00:00
#pragma once
2010-06-24 19:12:10 +00:00
#include <Core/Field.h>
#include <Core/FieldVisitors.h>
#include <Parsers/ASTWithAlias.h>
2010-06-24 19:12:10 +00:00
namespace DB
{
2017-05-27 17:27:16 +00:00
/** Literal (atomic) - number, string, NULL
2010-06-24 19:12:10 +00:00
*/
2014-07-03 22:39:13 +00:00
class ASTLiteral : public ASTWithAlias
2010-06-24 19:12:10 +00:00
{
public:
Field value;
2010-06-24 19:12:10 +00:00
ASTLiteral() = default;
ASTLiteral(const StringRange range_, const Field & value_) : ASTWithAlias(range_), value(value_) {}
2011-09-25 03:37:09 +00:00
2017-05-27 17:27:16 +00:00
/** Get the text that identifies this element. */
String getID() const override { return "Literal_" + applyVisitor(FieldVisitorDump(), value); }
2011-12-12 06:15:34 +00:00
ASTPtr clone() const override { return std::make_shared<ASTLiteral>(*this); }
protected:
void formatImplWithoutAlias(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override
{
settings.ostr << applyVisitor(FieldVisitorToString(), value);
}
String getColumnNameImpl() const override;
2010-06-24 19:12:10 +00:00
};
}