ClickHouse/src/Parsers/ASTLiteral.h

50 lines
1.4 KiB
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 <Parsers/ASTWithAlias.h>
2019-05-22 00:57:34 +00:00
#include <Parsers/TokenIterator.h>
#include <Common/FieldVisitors.h>
2019-05-22 19:59:18 +00:00
#include <optional>
2010-06-24 19:12:10 +00:00
namespace DB
{
/// Literal (atomic) - number, string, NULL
2014-07-03 22:39:13 +00:00
class ASTLiteral : public ASTWithAlias
2010-06-24 19:12:10 +00:00
{
public:
explicit ASTLiteral(Field && value_) : value(value_) {}
explicit ASTLiteral(const Field & value_) : value(value_) {}
Field value;
2010-06-24 19:12:10 +00:00
2019-05-22 00:57:34 +00:00
/// For ConstantExpressionTemplate
std::optional<TokenIterator> begin;
std::optional<TokenIterator> end;
2020-04-14 17:41:06 +00:00
/*
* The name of the column corresponding to this literal. Only used to
* disambiguate the literal columns with the same display name that are
* created at the expression analyzer stage. In the future, we might want to
* have a full separation between display names and column identifiers. For
* now, this field is effectively just some private EA data.
*/
String unique_column_name;
2017-05-27 17:27:16 +00:00
/** Get the text that identifies this element. */
String getID(char delim) const override { return "Literal" + (delim + applyVisitor(FieldVisitorDump(), value)); }
2011-12-12 06:15:34 +00:00
ASTPtr clone() const override { return std::make_shared<ASTLiteral>(*this); }
void updateTreeHashImpl(SipHash & hash_state) const override;
protected:
2020-11-09 16:05:40 +00:00
void formatImplWithoutAlias(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
2017-12-01 18:36:55 +00:00
void appendColumnNameImpl(WriteBuffer & ostr) const override;
2010-06-24 19:12:10 +00:00
};
}