mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
#include <Parsers/ASTShowIndexesQuery.h>
|
|
|
|
#include <iomanip>
|
|
#include <Common/quoteString.h>
|
|
#include <IO/Operators.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
ASTPtr ASTShowIndexesQuery::clone() const
|
|
{
|
|
auto res = std::make_shared<ASTShowIndexesQuery>(*this);
|
|
res->children.clear();
|
|
cloneOutputOptions(*res);
|
|
return res;
|
|
}
|
|
|
|
void ASTShowIndexesQuery::formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "")
|
|
<< "SHOW "
|
|
<< (extended ? "EXTENDED " : "")
|
|
<< "INDEXES"
|
|
<< (settings.hilite ? hilite_none : "");
|
|
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " FROM " << (settings.hilite ? hilite_none : "") << backQuoteIfNeed(table);
|
|
if (!database.empty())
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " FROM " << (settings.hilite ? hilite_none : "") << backQuoteIfNeed(database);
|
|
|
|
if (where_expression)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " WHERE " << (settings.hilite ? hilite_none : "");
|
|
where_expression->formatImpl(settings, state, frame);
|
|
}
|
|
}
|
|
|
|
}
|
|
|