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

31 lines
714 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>
namespace DB
{
/** Позволяет удалить таблицу вместе со всеми данными (DROP), или удалить информацию о таблице из сервера (DETACH).
*/
class InterpreterDropQuery
{
public:
InterpreterDropQuery(ASTPtr query_ptr_, Context & context_);
/// Удаляет таблицу.
void execute();
/// Удаляет таблицу, уже отцепленную от контекста (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;
};
}