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

28 lines
513 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();
private:
ASTPtr query_ptr;
Context context;
};
}