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();
|
|
|
|
|
|
2014-03-20 10:59:45 +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;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|