mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
34 lines
756 B
C++
34 lines
756 B
C++
#pragma once
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
#include <Common/NamePrompter.h>
|
|
#include <Interpreters/Context_fwd.h>
|
|
#include <Functions/IFunction.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class UserDefinedExecutableFunctionFactory
|
|
{
|
|
public:
|
|
using Creator = std::function<FunctionOverloadResolverPtr(ContextPtr)>;
|
|
|
|
static UserDefinedExecutableFunctionFactory & instance();
|
|
|
|
static FunctionOverloadResolverPtr get(const String & function_name, ContextPtr context);
|
|
|
|
static FunctionOverloadResolverPtr tryGet(const String & function_name, ContextPtr context);
|
|
|
|
static bool has(const String & function_name, ContextPtr context);
|
|
|
|
static std::vector<String> getRegisteredNames(ContextPtr context);
|
|
|
|
};
|
|
|
|
}
|