ClickHouse/dbms/src/Interpreters/InterpreterDropQuery.h

31 lines
517 B
C++
Raw Normal View History

2011-11-05 23:31:19 +00:00
#pragma once
#include <Interpreters/IInterpreter.h>
2011-11-05 23:31:19 +00:00
namespace DB
{
2017-05-23 18:01:50 +00:00
class Context;
class IAST;
using ASTPtr = std::shared_ptr<IAST>;
2011-11-05 23:31:19 +00:00
2017-05-23 18:01:50 +00:00
/** Allow to either drop table with all its data (DROP), or remove information about table (just forget) from server (DETACH).
2011-11-05 23:31:19 +00:00
*/
2015-06-18 02:11:05 +00:00
class InterpreterDropQuery : public IInterpreter
2011-11-05 23:31:19 +00:00
{
public:
2017-05-23 18:01:50 +00:00
InterpreterDropQuery(const ASTPtr & query_ptr_, Context & context_);
2015-06-18 02:11:05 +00:00
2017-05-23 18:01:50 +00:00
/// Drop table.
BlockIO execute() override;
2011-11-05 23:31:19 +00:00
private:
ASTPtr query_ptr;
2017-05-23 18:01:50 +00:00
Context & context;
2011-11-05 23:31:19 +00:00
};
}