#include namespace DB { ASTPtr ASTColumnDeclaration::clone() const { const auto res = std::make_shared(*this); res->children.clear(); if (type) { res->type = type; res->children.push_back(res->type); } if (default_expression) { res->default_expression = default_expression->clone(); res->children.push_back(res->default_expression); } if (codec) { res->codec = codec->clone(); res->children.push_back(res->codec); } if (comment) { res->comment = comment->clone(); res->children.push_back(res->comment); } return res; } void ASTColumnDeclaration::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const { frame.need_parens = false; std::string indent_str = settings.one_line ? "" : std::string(4 * frame.indent, ' '); settings.ostr << settings.nl_or_ws << indent_str << backQuoteIfNeed(name); if (type) { settings.ostr << ' '; type->formatImpl(settings, state, frame); } if (default_expression) { settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << default_specifier << (settings.hilite ? hilite_none : "") << ' '; default_expression->formatImpl(settings, state, frame); } if (comment) { settings.ostr << ' ' << (settings.hilite ? hilite_keyword : "") << "COMMENT" << (settings.hilite ? hilite_none : "") << ' '; comment->formatImpl(settings, state, frame); } if (codec) { settings.ostr << ' '; codec->formatImpl(settings, state, frame); } } }