2019-12-09 13:12:54 +00:00
|
|
|
#include <Functions/IFunctionImpl.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
|
|
|
|
{
|
|
|
|
|
|
|
|
/// 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";
|
|
|
|
static FunctionPtr create(const Context &)
|
|
|
|
{
|
|
|
|
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-07-21 13:58:07 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) const override
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
const IDataType & type = *block.getByPosition(arguments[0]).type;
|
|
|
|
block.getByPosition(result).column = type.createColumnConst(input_rows_count, type.getDefault());
|
|
|
|
}
|
2019-08-19 17:48:19 +00:00
|
|
|
|
|
|
|
ColumnPtr getResultIfAlwaysReturnsConstantAndHasArguments(const Block & block, const ColumnNumbers & arguments) const override
|
|
|
|
{
|
|
|
|
const IDataType & type = *block.getByPosition(arguments[0]).type;
|
|
|
|
return type.createColumnConst(1, type.getDefault());
|
|
|
|
}
|
2018-09-08 22:04:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void registerFunctionDefaultValueOfArgumentType(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionDefaultValueOfArgumentType>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|