ClickHouse/dbms/include/DB/Parsers/ASTDropQuery.h

30 lines
627 B
C
Raw Normal View History

2011-11-05 23:31:19 +00:00
#pragma once
#include <DB/Parsers/IAST.h>
namespace DB
{
/** DROP запрос
*/
class ASTDropQuery : public IAST
{
public:
2014-12-17 15:26:24 +00:00
bool detach{false}; /// Запрос DETACH, а не DROP.
bool if_exists{false};
2011-11-05 23:31:19 +00:00
String database;
String table;
2014-12-17 15:26:24 +00:00
ASTDropQuery() = default;
ASTDropQuery(const StringRange range_) : IAST(range_) {}
2011-11-05 23:31:19 +00:00
/** Получить текст, который идентифицирует этот элемент. */
2014-12-17 15:26:24 +00:00
String getID() const override { return (detach ? "DetachQuery_" : "DropQuery_") + database + "_" + table; };
2011-12-12 06:15:34 +00:00
2014-12-17 15:26:24 +00:00
ASTPtr clone() const override { return new ASTDropQuery(*this); }
2011-11-05 23:31:19 +00:00
};
}