ClickHouse/src/Parsers/ASTDictionary.cpp

200 lines
5.6 KiB
C++
Raw Normal View History

2019-10-01 14:54:28 +00:00
#include <Parsers/ASTDictionary.h>
#include <Poco/String.h>
namespace DB
{
ASTPtr ASTDictionaryRange::clone() const
{
auto res = std::make_shared<ASTDictionaryRange>(*this);
res->children.clear();
res->min_attr_name = min_attr_name;
res->max_attr_name = max_attr_name;
return res;
}
void ASTDictionaryRange::formatImpl(const FormatSettings & settings,
FormatState &,
FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "RANGE"
<< (settings.hilite ? hilite_none : "")
<< "("
<< (settings.hilite ? hilite_keyword : "")
<< "MIN "
<< (settings.hilite ? hilite_none : "")
<< min_attr_name << " "
2019-10-01 14:54:28 +00:00
<< (settings.hilite ? hilite_keyword : "")
<< "MAX "
<< (settings.hilite ? hilite_none : "")
<< max_attr_name << ")";
}
ASTPtr ASTDictionaryLifetime::clone() const
{
auto res = std::make_shared<ASTDictionaryLifetime>(*this);
res->children.clear();
res->min_sec = min_sec;
res->max_sec = max_sec;
return res;
}
void ASTDictionaryLifetime::formatImpl(const FormatSettings & settings,
FormatState &,
FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "LIFETIME"
<< (settings.hilite ? hilite_none : "")
<< "("
<< (settings.hilite ? hilite_keyword : "")
<< "MIN "
<< (settings.hilite ? hilite_none : "")
<< min_sec << " "
2019-10-01 14:54:28 +00:00
<< (settings.hilite ? hilite_keyword : "")
<< "MAX "
<< (settings.hilite ? hilite_none : "")
<< max_sec << ")";
}
ASTPtr ASTDictionaryLayout::clone() const
{
auto res = std::make_shared<ASTDictionaryLayout>(*this);
res->children.clear();
res->layout_type = layout_type;
if (parameter.has_value())
{
res->parameter.emplace(parameter->first, nullptr);
res->set(res->parameter->second, parameter->second->clone());
}
return res;
}
void ASTDictionaryLayout::formatImpl(const FormatSettings & settings,
FormatState & state,
2020-03-08 21:53:03 +00:00
FormatStateStacked frame) const
2019-10-01 14:54:28 +00:00
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "LAYOUT"
<< (settings.hilite ? hilite_none : "")
<< "("
<< (settings.hilite ? hilite_keyword : "")
<< Poco::toUpper(layout_type)
<< (settings.hilite ? hilite_none : "");
if (has_brackets)
settings.ostr << "(";
2019-10-01 14:54:28 +00:00
if (parameter)
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< Poco::toUpper(parameter->first)
<< (settings.hilite ? hilite_none : "")
<< " ";
2020-03-08 21:53:03 +00:00
parameter->second->formatImpl(settings, state, frame);
2019-10-01 14:54:28 +00:00
}
if (has_brackets)
settings.ostr << ")";
2019-10-01 14:54:28 +00:00
settings.ostr << ")";
}
void ASTDictionarySettings::formatImpl(const FormatSettings & settings,
FormatState &,
FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "SETTINGS"
<< (settings.hilite ? hilite_none : "")
<< "(";
for (auto it = changes.begin(); it != changes.end(); ++it)
{
if (it != changes.begin())
settings.ostr << ", ";
settings.ostr << it->name << " = " << applyVisitor(FieldVisitorToString(), it->value);
}
settings.ostr << (settings.hilite ? hilite_none : "") << ")";
}
2019-10-01 14:54:28 +00:00
ASTPtr ASTDictionary::clone() const
{
auto res = std::make_shared<ASTDictionary>(*this);
res->children.clear();
if (source)
res->set(res->source, source->clone());
if (primary_key)
res->set(res->primary_key, primary_key->clone());
if (lifetime)
res->set(res->lifetime, lifetime->clone());
if (layout)
res->set(res->layout, layout->clone());
if (range)
res->set(res->range, range->clone());
if (dict_settings)
res->set(res->dict_settings, range->clone());
2019-10-01 14:54:28 +00:00
return res;
}
void ASTDictionary::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
{
if (primary_key)
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << settings.nl_or_ws << "PRIMARY KEY "
<< (settings.hilite ? hilite_none : "");
2019-10-01 14:54:28 +00:00
primary_key->formatImpl(settings, state, frame);
}
if (source)
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << settings.nl_or_ws << "SOURCE("
<< (settings.hilite ? hilite_none : "");
source->formatImpl(settings, state, frame);
settings.ostr << ")";
}
2019-10-01 14:54:28 +00:00
if (lifetime)
{
settings.ostr << settings.nl_or_ws;
lifetime->formatImpl(settings, state, frame);
}
if (layout)
{
settings.ostr << settings.nl_or_ws;
layout->formatImpl(settings, state, frame);
}
if (range)
{
settings.ostr << settings.nl_or_ws;
range->formatImpl(settings, state, frame);
}
if (dict_settings)
{
settings.ostr << settings.nl_or_ws;
dict_settings->formatImpl(settings, state, frame);
}
2019-10-01 14:54:28 +00:00
}
}