mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
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(ContextPtr)
|
|
{
|
|
return std::make_shared<FunctionIdentity>();
|
|
}
|
|
|
|
String getName() const override { return name; }
|
|
size_t getNumberOfArguments() const override { return 1; }
|
|
bool isSuitableForConstantFolding() const override { return false; }
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) 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>();
|
|
}
|
|
|
|
}
|