mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
194 lines
5.3 KiB
C++
194 lines
5.3 KiB
C++
#include <Parsers/ASTDictionary.h>
|
|
#include <Poco/String.h>
|
|
#include <IO/Operators.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
ASTPtr ASTDictionaryRange::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTDictionaryRange>();
|
|
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 << " "
|
|
<< (settings.hilite ? hilite_keyword : "")
|
|
<< "MAX "
|
|
<< (settings.hilite ? hilite_none : "")
|
|
<< max_attr_name << ")";
|
|
}
|
|
|
|
|
|
ASTPtr ASTDictionaryLifetime::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTDictionaryLifetime>();
|
|
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 << " "
|
|
<< (settings.hilite ? hilite_keyword : "")
|
|
<< "MAX "
|
|
<< (settings.hilite ? hilite_none : "")
|
|
<< max_sec << ")";
|
|
}
|
|
|
|
|
|
ASTPtr ASTDictionaryLayout::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTDictionaryLayout>();
|
|
res->layout_type = layout_type;
|
|
res->set(res->parameters, parameters->clone());
|
|
res->has_brackets = has_brackets;
|
|
return res;
|
|
}
|
|
|
|
|
|
void ASTDictionaryLayout::formatImpl(const FormatSettings & settings,
|
|
FormatState & state,
|
|
FormatStateStacked frame) const
|
|
{
|
|
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 << "(";
|
|
|
|
parameters->formatImpl(settings, state, frame);
|
|
|
|
if (has_brackets)
|
|
settings.ostr << ")";
|
|
|
|
settings.ostr << ")";
|
|
}
|
|
|
|
ASTPtr ASTDictionarySettings::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTDictionarySettings>();
|
|
res->changes = changes;
|
|
|
|
return res;
|
|
}
|
|
|
|
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 : "") << ")";
|
|
}
|
|
|
|
|
|
ASTPtr ASTDictionary::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTDictionary>();
|
|
|
|
if (primary_key)
|
|
res->set(res->primary_key, primary_key->clone());
|
|
|
|
if (source)
|
|
res->set(res->source, source->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, dict_settings->clone());
|
|
|
|
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 : "");
|
|
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 << ")";
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
}
|