mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
32 lines
694 B
C++
32 lines
694 B
C++
#pragma once
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
class InterpreterCreateFunctionQuery : public IInterpreter, WithContext
|
|
{
|
|
public:
|
|
InterpreterCreateFunctionQuery(const ASTPtr & query_ptr_, ContextPtr context_, bool persist_function_)
|
|
: WithContext(context_)
|
|
, query_ptr(query_ptr_)
|
|
, persist_function(persist_function_) {}
|
|
|
|
BlockIO execute() override;
|
|
|
|
void setInternal(bool internal_);
|
|
|
|
private:
|
|
static void validateFunction(ASTPtr function, const String & name);
|
|
static void validateFunctionRecursiveness(ASTPtr node, const String & function_to_create);
|
|
|
|
ASTPtr query_ptr;
|
|
bool persist_function;
|
|
};
|
|
|
|
}
|