ClickHouse/src/Parsers/ASTDeleteQuery.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.1 KiB
C++
Raw Normal View History

#include <Parsers/ASTDeleteQuery.h>
#include <Common/quoteString.h>
namespace DB
{
String ASTDeleteQuery::getID(char delim) const
{
return "DeleteQuery" + (delim + getDatabase()) + delim + getTable();
}
ASTPtr ASTDeleteQuery::clone() const
{
auto res = std::make_shared<ASTDeleteQuery>(*this);
res->children.clear();
if (predicate)
{
res->predicate = predicate->clone();
res->children.push_back(res->predicate);
}
cloneTableOptions(*res);
return res;
}
void ASTDeleteQuery::formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << "DELETE FROM " << (settings.hilite ? hilite_none : "");
if (database)
{
settings.ostr << backQuoteIfNeed(getDatabase());
settings.ostr << ".";
}
settings.ostr << backQuoteIfNeed(getTable());
settings.ostr << (settings.hilite ? hilite_keyword : "") << " WHERE " << (settings.hilite ? hilite_none : "");
predicate->formatImpl(settings, state, frame);
}
}