2021-05-15 17:33:15 +00:00
|
|
|
#include <Functions/IFunctionOld.h>
|
2018-09-08 22:04:39 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
2019-10-04 17:46:36 +00:00
|
|
|
#include <Core/Field.h>
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
/// Returns global default value for type of passed argument (example: 0 for numeric types, '' for String).
|
|
|
|
class FunctionDefaultValueOfArgumentType : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "defaultValueOfArgumentType";
|
2021-04-10 23:33:54 +00:00
|
|
|
static FunctionPtr create(ContextPtr)
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDefaultValueOfArgumentType>();
|
|
|
|
}
|
|
|
|
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool useDefaultImplementationForNulls() const override { return false; }
|
2020-06-30 11:29:50 +00:00
|
|
|
bool useDefaultImplementationForLowCardinalityColumns() const override { return false; }
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
size_t getNumberOfArguments() const override
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
|
|
|
return arguments[0];
|
|
|
|
}
|
|
|
|
|
2020-11-17 13:24:45 +00:00
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
2020-10-17 21:41:50 +00:00
|
|
|
const IDataType & type = *arguments[0].type;
|
|
|
|
return type.createColumnConst(input_rows_count, type.getDefault());
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
2019-08-19 17:48:19 +00:00
|
|
|
|
2020-10-20 13:11:57 +00:00
|
|
|
ColumnPtr getResultIfAlwaysReturnsConstantAndHasArguments(const ColumnsWithTypeAndName & arguments) const override
|
2019-08-19 17:48:19 +00:00
|
|
|
{
|
2020-10-20 13:11:57 +00:00
|
|
|
const IDataType & type = *arguments[0].type;
|
2019-08-19 17:48:19 +00:00
|
|
|
return type.createColumnConst(1, type.getDefault());
|
|
|
|
}
|
2018-09-08 22:04:39 +00:00
|
|
|
};
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
void registerFunctionDefaultValueOfArgumentType(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionDefaultValueOfArgumentType>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|