ClickHouse/dbms/include/DB/Interpreters/InterpreterDropQuery.h

32 lines
789 B
C
Raw Normal View History

2011-11-05 23:31:19 +00:00
#pragma once
#include <DB/Storages/IStorage.h>
#include <DB/Interpreters/Context.h>
2015-06-18 02:11:05 +00:00
#include <DB/Interpreters/IInterpreter.h>
2011-11-05 23:31:19 +00:00
namespace DB
{
/** Позволяет удалить таблицу вместе со всеми данными (DROP), или удалить информацию о таблице из сервера (DETACH).
*/
2015-06-18 02:11:05 +00:00
class InterpreterDropQuery : public IInterpreter
2011-11-05 23:31:19 +00:00
{
public:
InterpreterDropQuery(ASTPtr query_ptr_, Context & context_);
2015-06-18 02:11:05 +00:00
2011-11-05 23:31:19 +00:00
/// Удаляет таблицу.
2015-06-18 02:11:05 +00:00
BlockIO execute() override;
2011-11-05 23:31:19 +00:00
/// Удаляет таблицу, уже отцепленную от контекста (Context::detach).
static void dropDetachedTable(String database_name, StoragePtr table, Context & context);
2011-11-05 23:31:19 +00:00
private:
ASTPtr query_ptr;
Context context;
};
}