#pragma once #include #include #include #include #include #include #include #include namespace DB { class FunctionIsNull : public IFunction { public: static constexpr auto name = "isNull"; static FunctionPtr create(const Context & context) { return std::make_shared(); } std::string getName() const override { return name; } bool hasSpecialSupportForNulls() const override { return true; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { if (arguments.size() != 1) throw Exception("Number of arguments for function " + getName() + " doesn't match: passed " + toString(arguments.size()) + ", should be 1.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); return std::make_shared(); } void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result) override { ColumnWithTypeAndName & elem = block.getByPosition(arguments[0]); if (elem.column->isNull()) { /// Trivial case. block.getByPosition(result).column = std::make_shared(elem.column.get()->size(), 1); } else if (elem.column->isNullable()) { /// Merely return the embedded null map. ColumnNullable & nullable_col = static_cast(*elem.column); block.getByPosition(result).column = nullable_col.getNullValuesByteMap(); } else { /// Since no element is nullable, create a zero-filled null map. block.getByPosition(result).column = std::make_shared(elem.column.get()->size(), 0); } } }; class FunctionIsNotNull : public IFunction { public: static constexpr auto name = "isNotNull"; static FunctionPtr create(const Context & context) { return std::make_shared(); } std::string getName() const override { return name; } bool hasSpecialSupportForNulls() const override { return true; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { if (arguments.size() != 1) throw Exception("Number of arguments for function " + getName() + " doesn't match: passed " + toString(arguments.size()) + ", should be 1.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); return std::make_shared(); } void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result) override { FunctionIsNull is_null_func; ColumnWithTypeAndName temp_res; temp_res.type = std::make_shared(); block.insert(temp_res); size_t temp_res_num = block.columns() - 1; is_null_func.executeImpl(block, arguments, temp_res_num); FunctionNot not_func; ColumnNumbers new_args; new_args.push_back(temp_res_num); not_func.executeImpl(block, new_args, result); block.erase(temp_res_num); } }; /// XXX The code below is unfinished. class FunctionCoalesce : public IFunction { public: static constexpr auto name = "coalesce"; static FunctionPtr create(const Context & context) { return std::make_shared(); } std::string getName() const override { return name; } bool hasSpecialSupportForNulls() const override { return true; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { DataTypes new_args; for (size_t i = 0; i < arguments.size(); ++i) { new_args.push_back(std::make_shared()); new_args.push_back(arguments[i]); } new_args.push_back(std::make_shared()); return FunctionMultiIf{}.getReturnType(new_args); } void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result) override { /// coalesce(arg0, arg1, ..., argN) is essentially /// multiIf(isNotNull(arg0), arg0, isNotNull(arg1), arg1, ..., isNotNull(argN), argN, NULL) for (size_t i = 0; i < arguments.size(); ++i) { ColumnWithTypeAndName elem; elem.type = std::make_shared(); elem.name = "isNotNull(" + block.getByPosition(arguments[i]).name + ")"; size_t res_pos = block.columns(); block.insert(elem); FunctionIsNotNull{}.executeImpl(block, { arguments[i] }, res_pos); } ColumnNumbers new_args; for (size_t i = 0; i < arguments.size(); ++i) { new_args.push_back(result + i); new_args.push_back(arguments[i]); } /// For the NULL value. new_args.push_back(block.columns()); /// Append a NULL column to block. ColumnWithTypeAndName elem; elem.column = std::make_shared(block.rowsInFirstColumn(), Null()); elem.type = std::make_shared(); elem.name = "NULL"; block.insert(elem); FunctionMultiIf{}.execute(block, new_args, result); } }; }