mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
#include <Parsers/ASTIndexDeclaration.h>
|
|
|
|
#include <Common/quoteString.h>
|
|
#include <IO/Operators.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
ASTPtr ASTIndexDeclaration::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTIndexDeclaration>();
|
|
|
|
res->name = name;
|
|
res->granularity = granularity;
|
|
|
|
if (expr)
|
|
res->set(res->expr, expr->clone());
|
|
if (type)
|
|
res->set(res->type, type->clone());
|
|
return res;
|
|
}
|
|
|
|
|
|
void ASTIndexDeclaration::formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
if (part_of_create_index_query)
|
|
{
|
|
s.ostr << "(";
|
|
expr->formatImpl(s, state, frame);
|
|
s.ostr << ")";
|
|
}
|
|
else
|
|
{
|
|
s.ostr << backQuoteIfNeed(name);
|
|
s.ostr << " ";
|
|
expr->formatImpl(s, state, frame);
|
|
}
|
|
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << " TYPE " << (s.hilite ? hilite_none : "");
|
|
type->formatImpl(s, state, frame);
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << " GRANULARITY " << (s.hilite ? hilite_none : "");
|
|
s.ostr << granularity;
|
|
}
|
|
|
|
}
|
|
|