mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
48 lines
898 B
C++
48 lines
898 B
C++
#include <Functions/IFunctionImpl.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
class FunctionIdentity : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "identity";
|
|
static FunctionPtr create(const Context &)
|
|
{
|
|
return std::make_shared<FunctionIdentity>();
|
|
}
|
|
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
size_t getNumberOfArguments() const override
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
{
|
|
return arguments.front();
|
|
}
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t /*input_rows_count*/) const override
|
|
{
|
|
return arguments.front().column;
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
void registerFunctionIdentity(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionIdentity>();
|
|
}
|
|
|
|
}
|