ClickHouse/src/Parsers/ASTDictionaryAttributeDeclaration.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
2.0 KiB
C++
Raw Normal View History

2019-10-01 14:54:28 +00:00
#include <Parsers/ASTDictionaryAttributeDeclaration.h>
#include <Common/quoteString.h>
2020-11-09 16:05:40 +00:00
#include <IO/Operators.h>
2019-10-01 14:54:28 +00:00
namespace DB
{
ASTPtr ASTDictionaryAttributeDeclaration::clone() const
{
const auto res = std::make_shared<ASTDictionaryAttributeDeclaration>(*this);
res->children.clear();
if (type)
{
res->type = type->clone();
res->children.push_back(res->type);
}
if (default_value)
{
res->default_value = default_value;
res->children.push_back(res->default_value);
}
if (expression)
{
res->expression = expression->clone();
res->children.push_back(res->expression);
}
return res;
}
void ASTDictionaryAttributeDeclaration::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
{
frame.need_parens = false;
settings.ostr << backQuote(name);
if (type)
{
settings.ostr << ' ';
type->formatImpl(settings, state, frame);
}
if (default_value)
{
settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << "DEFAULT" << (settings.hilite ? hilite_none : "") << ' ';
default_value->formatImpl(settings, state, frame);
}
if (expression)
{
settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << "EXPRESSION" << (settings.hilite ? hilite_none : "") << ' ';
expression->formatImpl(settings, state, frame);
}
if (hierarchical)
2023-03-21 12:32:03 +00:00
settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << "HIERARCHICAL" << (settings.hilite ? hilite_none : "");
2019-10-01 14:54:28 +00:00
if (bidirectional)
2023-03-21 12:32:03 +00:00
settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << "BIDIRECTIONAL" << (settings.hilite ? hilite_none : "");
2019-10-01 14:54:28 +00:00
if (injective)
2023-03-21 12:32:03 +00:00
settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << "INJECTIVE" << (settings.hilite ? hilite_none : "");
2019-10-01 14:54:28 +00:00
if (is_object_id)
2023-03-21 12:32:03 +00:00
settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << "IS_OBJECT_ID" << (settings.hilite ? hilite_none : "");
2019-10-01 14:54:28 +00:00
}
}