#include #include #include #include #include #include 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(); } 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 (const auto * nullable_col = checkAndGetColumn(*col)) res_col = nullable_col->getNestedColumnPtr(); else res_col = col; } }; void registerFunctionAssumeNotNull(FunctionFactory & factory) { factory.registerFunction(); } }