mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
#include <Parsers/ASTWithAlias.h>
|
|
#include <IO/WriteBufferFromOStream.h>
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
static void writeAlias(const String & name, const ASTWithAlias::FormatSettings & settings)
|
|
{
|
|
settings.ostr << (settings.hilite ? IAST::hilite_keyword : "") << " AS " << (settings.hilite ? IAST::hilite_alias : "");
|
|
settings.writeIdentifier(name);
|
|
settings.ostr << (settings.hilite ? IAST::hilite_none : "");
|
|
}
|
|
|
|
|
|
void ASTWithAlias::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
/// If we have previously output this node elsewhere in the query, now it is enough to output only the alias.
|
|
/// This is needed because the query can become extraordinary large after substitution of aliases.
|
|
if (!alias.empty() && !state.printed_asts_with_alias.emplace(frame.current_select, alias, getTreeHash()).second)
|
|
{
|
|
settings.writeIdentifier(alias);
|
|
}
|
|
else
|
|
{
|
|
/// If there is an alias, then parentheses are required around the entire expression, including the alias.
|
|
/// Because a record of the form `0 AS x + 0` is syntactically invalid.
|
|
if (frame.need_parens && !alias.empty())
|
|
settings.ostr << '(';
|
|
|
|
formatImplWithoutAlias(settings, state, frame);
|
|
|
|
if (!alias.empty())
|
|
{
|
|
writeAlias(alias, settings);
|
|
if (frame.need_parens)
|
|
settings.ostr << ')';
|
|
}
|
|
}
|
|
}
|
|
|
|
void ASTWithAlias::appendColumnName(WriteBuffer & ostr) const
|
|
{
|
|
if (prefer_alias_to_column_name && !alias.empty())
|
|
writeString(alias, ostr);
|
|
else
|
|
appendColumnNameImpl(ostr);
|
|
}
|
|
|
|
}
|