mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
25 lines
617 B
C++
25 lines
617 B
C++
#include "UserDefinedExecutableFunction.h"
|
|
|
|
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionHelpers.h>
|
|
|
|
#include <Processors/Sources/ShellCommandSource.h>
|
|
#include <Formats/formatBlock.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
UserDefinedExecutableFunction::UserDefinedExecutableFunction(
|
|
const UserDefinedExecutableFunctionConfiguration & configuration_,
|
|
std::shared_ptr<ShellCommandSourceCoordinator> coordinator_,
|
|
const ExternalLoadableLifetime & lifetime_)
|
|
: configuration(configuration_)
|
|
, coordinator(std::move(coordinator_))
|
|
, lifetime(lifetime_)
|
|
{
|
|
}
|
|
|
|
};
|