ClickHouse/src/Interpreters/InterpreterDropFunctionQuery.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
389 B
C++
Raw Normal View History

2021-05-14 22:43:04 +00:00
#pragma once
#include <Interpreters/IInterpreter.h>
namespace DB
{
2021-07-19 23:34:04 +00:00
class Context;
2021-05-14 22:43:04 +00:00
2021-07-19 23:34:04 +00:00
class InterpreterDropFunctionQuery : public IInterpreter, WithMutableContext
2021-05-14 22:43:04 +00:00
{
public:
2021-07-19 23:34:04 +00:00
InterpreterDropFunctionQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_) : WithMutableContext(context_), query_ptr(query_ptr_) {}
2021-05-14 22:43:04 +00:00
BlockIO execute() override;
private:
ASTPtr query_ptr;
};
}