ClickHouse/src/Parsers/ASTExpressionList.cpp

52 lines
1.4 KiB
C++
Raw Normal View History

2017-06-18 05:44:09 +00:00
#include <Parsers/ASTExpressionList.h>
namespace DB
{
ASTPtr ASTExpressionList::clone() const
{
auto clone = std::make_shared<ASTExpressionList>(*this);
clone->cloneChildren();
return clone;
2017-06-18 05:44:09 +00:00
}
void ASTExpressionList::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
{
for (ASTs::const_iterator it = children.begin(); it != children.end(); ++it)
{
if (it != children.begin())
2019-10-07 16:23:16 +00:00
{
if (separator)
settings.ostr << separator;
settings.ostr << ' ';
}
2017-06-18 05:44:09 +00:00
(*it)->formatImpl(settings, state, frame);
}
}
void ASTExpressionList::formatImplMultiline(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
{
std::string indent_str = "\n" + std::string(4 * (frame.indent + 1), ' ');
++frame.indent;
for (ASTs::const_iterator it = children.begin(); it != children.end(); ++it)
{
if (it != children.begin())
2019-10-07 16:23:16 +00:00
{
if (separator)
settings.ostr << separator;
}
2020-06-15 04:27:33 +00:00
if (children.size() > 1 || frame.expression_list_always_start_on_new_line)
2017-06-18 05:44:09 +00:00
settings.ostr << indent_str;
2020-06-15 04:27:33 +00:00
FormatStateStacked frame_nested = frame;
frame_nested.expression_list_always_start_on_new_line = false;
(*it)->formatImpl(settings, state, frame_nested);
2017-06-18 05:44:09 +00:00
}
}
}