mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
29 lines
906 B
C++
29 lines
906 B
C++
#include <Parsers/ASTKillQueryQuery.h>
|
|
#include <IO/Operators.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
String ASTKillQueryQuery::getID(char delim) const
|
|
{
|
|
return String("KillQueryQuery") + delim + (where_expression ? where_expression->getID() : "") + delim + String(sync ? "SYNC" : "ASYNC");
|
|
}
|
|
|
|
void ASTKillQueryQuery::formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "KILL "
|
|
<< (type == Type::Query ? "QUERY" : "MUTATION");
|
|
|
|
formatOnCluster(settings);
|
|
|
|
if (where_expression)
|
|
{
|
|
settings.ostr << " WHERE " << (settings.hilite ? hilite_none : "");
|
|
where_expression->formatImpl(settings, state, frame);
|
|
}
|
|
|
|
settings.ostr << " " << (settings.hilite ? hilite_keyword : "") << (test ? "TEST" : (sync ? "SYNC" : "ASYNC")) << (settings.hilite ? hilite_none : "");
|
|
}
|
|
|
|
}
|