mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
#include <Parsers/ASTSubquery.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <IO/Operators.h>
|
|
#include <Common/SipHash.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void ASTSubquery::appendColumnNameImpl(WriteBuffer & ostr) const
|
|
{
|
|
/// This is a hack. We use alias, if available, because otherwise tree could change during analysis.
|
|
if (!alias.empty())
|
|
{
|
|
writeString(alias, ostr);
|
|
}
|
|
else if (!cte_name.empty())
|
|
{
|
|
writeString(cte_name, ostr);
|
|
}
|
|
else
|
|
{
|
|
const auto hash = getTreeHash(/*ignore_aliases=*/ true);
|
|
writeCString("__subquery_", ostr);
|
|
writeString(toString(hash), ostr);
|
|
}
|
|
}
|
|
|
|
void ASTSubquery::formatImplWithoutAlias(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
/// NOTE: due to trickery of filling cte_name (in interpreters) it is hard
|
|
/// to print it without newline (for !oneline case), since if nl_or_ws
|
|
/// prepended here, then formatting will be incorrect with alias:
|
|
///
|
|
/// (select 1 in ((select 1) as sub))
|
|
if (!cte_name.empty())
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_identifier : "");
|
|
settings.writeIdentifier(cte_name);
|
|
settings.ostr << (settings.hilite ? hilite_none : "");
|
|
return;
|
|
}
|
|
|
|
std::string indent_str = settings.one_line ? "" : std::string(4u * frame.indent, ' ');
|
|
std::string nl_or_nothing = settings.one_line ? "" : "\n";
|
|
|
|
settings.ostr << "(" << nl_or_nothing;
|
|
FormatStateStacked frame_nested = frame;
|
|
frame_nested.need_parens = false;
|
|
++frame_nested.indent;
|
|
children[0]->formatImpl(settings, state, frame_nested);
|
|
settings.ostr << nl_or_nothing << indent_str << ")";
|
|
}
|
|
|
|
void ASTSubquery::updateTreeHashImpl(SipHash & hash_state, bool ignore_aliases) const
|
|
{
|
|
if (!cte_name.empty())
|
|
hash_state.update(cte_name);
|
|
ASTWithAlias::updateTreeHashImpl(hash_state, ignore_aliases);
|
|
}
|
|
|
|
String ASTSubquery::getAliasOrColumnName() const
|
|
{
|
|
if (!alias.empty())
|
|
return alias;
|
|
if (!cte_name.empty())
|
|
return cte_name;
|
|
return getColumnName();
|
|
}
|
|
|
|
String ASTSubquery::tryGetAlias() const
|
|
{
|
|
if (!alias.empty())
|
|
return alias;
|
|
return cte_name;
|
|
}
|
|
|
|
}
|
|
|