mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 20:53:27 +00:00
28 lines
513 B
C
28 lines
513 B
C
|
#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;
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
}
|