ClickHouse/src/Parsers/ASTDropQuery.cpp

74 lines
2.1 KiB
C++
Raw Normal View History

2018-06-09 16:03:07 +00:00
#include <Parsers/ASTDropQuery.h>
#include <Common/quoteString.h>
2018-06-09 16:03:07 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int SYNTAX_ERROR;
}
String ASTDropQuery::getID(char delim) const
2018-06-09 16:03:07 +00:00
{
if (kind == ASTDropQuery::Kind::Drop)
return "DropQuery" + (delim + database) + delim + table;
2018-06-09 16:03:07 +00:00
else if (kind == ASTDropQuery::Kind::Detach)
return "DetachQuery" + (delim + database) + delim + table;
2018-06-09 16:03:07 +00:00
else if (kind == ASTDropQuery::Kind::Truncate)
return "TruncateQuery" + (delim + database) + delim + table;
2018-06-09 16:03:07 +00:00
else
throw Exception("Not supported kind of drop query.", ErrorCodes::SYNTAX_ERROR);
}
ASTPtr ASTDropQuery::clone() const
{
auto res = std::make_shared<ASTDropQuery>(*this);
cloneOutputOptions(*res);
return res;
}
void ASTDropQuery::formatQueryImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "");
if (kind == ASTDropQuery::Kind::Drop)
settings.ostr << "DROP ";
else if (kind == ASTDropQuery::Kind::Detach)
settings.ostr << "DETACH ";
else if (kind == ASTDropQuery::Kind::Truncate)
settings.ostr << "TRUNCATE ";
else
throw Exception("Not supported kind of drop query.", ErrorCodes::SYNTAX_ERROR);
if (temporary)
settings.ostr << "TEMPORARY ";
2019-10-08 11:10:29 +00:00
if (table.empty() && !database.empty())
settings.ostr << "DATABASE ";
2020-03-23 22:28:30 +00:00
else if (is_dictionary)
2019-10-08 11:10:29 +00:00
settings.ostr << "DICTIONARY ";
2020-03-23 22:28:30 +00:00
else if (is_view)
settings.ostr << "VIEW ";
else
settings.ostr << "TABLE ";
2018-06-09 16:03:07 +00:00
if (if_exists)
settings.ostr << "IF EXISTS ";
settings.ostr << (settings.hilite ? hilite_none : "");
if (table.empty() && !database.empty())
settings.ostr << backQuoteIfNeed(database);
else
settings.ostr << (!database.empty() ? backQuoteIfNeed(database) + "." : "") << backQuoteIfNeed(table);
formatOnCluster(settings);
2020-03-20 00:07:52 +00:00
if (no_delay)
settings.ostr << (settings.hilite ? hilite_keyword : "") << " NO DELAY" << (settings.hilite ? hilite_none : "");
2018-06-09 16:03:07 +00:00
}
}