mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 11:32:03 +00:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
|
#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);
|
||
|
}
|
||
|
|
||
|
}
|