mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 19:42:00 +00:00
92 lines
3.0 KiB
C++
92 lines
3.0 KiB
C++
#include <iomanip>
|
|
#include <Parsers/ASTShowTablesQuery.h>
|
|
#include <Common/quoteString.h>
|
|
#include <IO/Operators.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
ASTPtr ASTShowTablesQuery::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTShowTablesQuery>(*this);
|
|
res->children.clear();
|
|
cloneOutputOptions(*res);
|
|
return res;
|
|
}
|
|
|
|
void ASTShowTablesQuery::formatLike(const FormatSettings & settings) const
|
|
{
|
|
if (!like.empty())
|
|
settings.ostr
|
|
<< (settings.hilite ? hilite_keyword : "")
|
|
<< (not_like ? " NOT" : "")
|
|
<< (case_insensitive_like ? " ILIKE " : " LIKE ")
|
|
<< (settings.hilite ? hilite_none : "")
|
|
<< DB::quote << like;
|
|
}
|
|
|
|
void ASTShowTablesQuery::formatLimit(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
if (limit_length)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " LIMIT " << (settings.hilite ? hilite_none : "");
|
|
limit_length->formatImpl(settings, state, frame);
|
|
}
|
|
}
|
|
|
|
void ASTShowTablesQuery::formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
if (databases)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "SHOW DATABASES" << (settings.hilite ? hilite_none : "");
|
|
formatLike(settings);
|
|
formatLimit(settings, state, frame);
|
|
|
|
}
|
|
else if (clusters)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "SHOW CLUSTERS" << (settings.hilite ? hilite_none : "");
|
|
formatLike(settings);
|
|
formatLimit(settings, state, frame);
|
|
|
|
}
|
|
else if (cluster)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "SHOW CLUSTER" << (settings.hilite ? hilite_none : "");
|
|
settings.ostr << " " << backQuoteIfNeed(cluster_str);
|
|
}
|
|
else if (caches)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "SHOW FILESYSTEM CACHES" << (settings.hilite ? hilite_none : "");
|
|
formatLike(settings);
|
|
formatLimit(settings, state, frame);
|
|
}
|
|
else if (m_settings)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "SHOW " << (changed ? "CHANGED " : "") << "SETTINGS" <<
|
|
(settings.hilite ? hilite_none : "");
|
|
formatLike(settings);
|
|
}
|
|
else
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "SHOW " << (temporary ? "TEMPORARY " : "") <<
|
|
(dictionaries ? "DICTIONARIES" : "TABLES") << (settings.hilite ? hilite_none : "");
|
|
|
|
if (!from.empty())
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " FROM " << (settings.hilite ? hilite_none : "")
|
|
<< backQuoteIfNeed(from);
|
|
|
|
formatLike(settings);
|
|
|
|
if (where_expression)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " WHERE " << (settings.hilite ? hilite_none : "");
|
|
where_expression->formatImpl(settings, state, frame);
|
|
}
|
|
|
|
formatLimit(settings, state, frame);
|
|
}
|
|
}
|
|
|
|
}
|