mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
fix
This commit is contained in:
parent
3dce3c6a21
commit
7159affda8
@ -40,12 +40,23 @@ void ASTSelectWithUnionQuery::formatQueryImpl(const FormatSettings & settings, F
|
||||
if (it != list_of_selects->children.begin())
|
||||
settings.ostr << settings.nl_or_ws << indent_str << (settings.hilite ? hilite_keyword : "") << "UNION "
|
||||
<< mode_to_str(union_modes[it - list_of_selects->children.begin() - 1]) << (settings.hilite ? hilite_none : "");
|
||||
if (auto _ = (*it)->as<ASTSelectWithUnionQuery>())
|
||||
if (auto node = (*it)->as<ASTSelectWithUnionQuery>())
|
||||
{
|
||||
// just one child in subquery, () is not need
|
||||
if (node->list_of_selects->children.size() == 1)
|
||||
{
|
||||
if (it != list_of_selects->children.begin())
|
||||
settings.ostr << settings.nl_or_ws;
|
||||
node->list_of_selects->children.at(0)->formatImpl(settings, state, frame);
|
||||
}
|
||||
// more than one child in subquery
|
||||
else
|
||||
{
|
||||
auto sub_query = std::make_shared<ASTSubquery>();
|
||||
sub_query->children.push_back(*it);
|
||||
sub_query->formatImpl(settings, state, frame);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (it != list_of_selects->children.begin())
|
||||
|
Loading…
Reference in New Issue
Block a user