mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 17:32:32 +00:00
3f57fc085b
Also remove it from some visitors.
42 lines
934 B
C++
42 lines
934 B
C++
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
class FunctionIdentity : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "identity";
|
|
static FunctionPtr create(ContextConstPtr)
|
|
{
|
|
return std::make_shared<FunctionIdentity>();
|
|
}
|
|
|
|
String getName() const override { return name; }
|
|
size_t getNumberOfArguments() const override { return 1; }
|
|
bool isSuitableForConstantFolding() const override { return false; }
|
|
|
|
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>();
|
|
}
|
|
|
|
}
|