mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
#include <Functions/IFunctionImpl.h>
|
|
#include <Functions/FunctionHelpers.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <DataTypes/DataTypeNullable.h>
|
|
#include <Core/ColumnNumbers.h>
|
|
#include <Columns/ColumnNullable.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Implements the function assumeNotNull which takes 1 argument and works as follows:
|
|
/// - if the argument is a nullable column, return its embedded column;
|
|
/// - otherwise return the original argument.
|
|
/// NOTE: assumeNotNull may not be called with the NULL value.
|
|
class FunctionAssumeNotNull : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "assumeNotNull";
|
|
|
|
static FunctionPtr create(const Context &)
|
|
{
|
|
return std::make_shared<FunctionAssumeNotNull>();
|
|
}
|
|
|
|
std::string getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
size_t getNumberOfArguments() const override { return 1; }
|
|
bool useDefaultImplementationForNulls() const override { return false; }
|
|
bool useDefaultImplementationForConstants() const override { return true; }
|
|
ColumnNumbers getArgumentsThatDontImplyNullableReturnType(size_t /*number_of_arguments*/) const override { return {0}; }
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
{
|
|
return removeNullable(arguments[0]);
|
|
}
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t) override
|
|
{
|
|
const ColumnPtr & col = block.getByPosition(arguments[0]).column;
|
|
ColumnPtr & res_col = block.getByPosition(result).column;
|
|
|
|
if (auto * nullable_col = checkAndGetColumn<ColumnNullable>(*col))
|
|
res_col = nullable_col->getNestedColumnPtr();
|
|
else
|
|
res_col = col;
|
|
}
|
|
};
|
|
|
|
|
|
void registerFunctionAssumeNotNull(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionAssumeNotNull>();
|
|
}
|
|
|
|
}
|