2021-05-17 07:30:42 +00:00
|
|
|
#include <Functions/IFunction.h>
|
2018-09-08 01:24:09 +00:00
|
|
|
#include <Functions/FunctionHelpers.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <Core/ColumnNumbers.h>
|
|
|
|
#include <Columns/ColumnNullable.h>
|
2019-08-21 02:28:04 +00:00
|
|
|
#include <Common/assert_cast.h>
|
2018-09-08 01:24:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-09-08 01:24:09 +00:00
|
|
|
|
|
|
|
/// Implements the function isNotNull which returns true if a value
|
|
|
|
/// is not null, false otherwise.
|
|
|
|
class FunctionIsNotNull : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "isNotNull";
|
|
|
|
|
2021-06-01 12:20:52 +00:00
|
|
|
static FunctionPtr create(ContextPtr)
|
2018-09-08 01:24:09 +00:00
|
|
|
{
|
|
|
|
return std::make_shared<FunctionIsNotNull>();
|
|
|
|
}
|
|
|
|
|
|
|
|
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; }
|
2021-06-22 16:21:23 +00:00
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
|
2019-10-02 17:51:00 +00:00
|
|
|
ColumnNumbers getArgumentsThatDontImplyNullableReturnType(size_t /*number_of_arguments*/) const override { return {0}; }
|
2018-09-08 01:24:09 +00:00
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes &) const override
|
|
|
|
{
|
|
|
|
return std::make_shared<DataTypeUInt8>();
|
|
|
|
}
|
|
|
|
|
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 01:24:09 +00:00
|
|
|
{
|
2020-10-19 13:42:14 +00:00
|
|
|
const ColumnWithTypeAndName & elem = arguments[0];
|
2020-04-22 08:31:10 +00:00
|
|
|
if (const auto * nullable = checkAndGetColumn<ColumnNullable>(*elem.column))
|
2018-09-08 01:24:09 +00:00
|
|
|
{
|
|
|
|
/// Return the negated null map.
|
|
|
|
auto res_column = ColumnUInt8::create(input_rows_count);
|
2019-06-26 17:20:33 +00:00
|
|
|
const auto & src_data = nullable->getNullMapData();
|
2019-08-21 02:28:04 +00:00
|
|
|
auto & res_data = assert_cast<ColumnUInt8 &>(*res_column).getData();
|
2018-09-08 01:24:09 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < input_rows_count; ++i)
|
|
|
|
res_data[i] = !src_data[i];
|
|
|
|
|
2020-10-19 13:42:14 +00:00
|
|
|
return res_column;
|
2018-09-08 01:24:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// Since no element is nullable, return a constant one.
|
2020-10-19 13:42:14 +00:00
|
|
|
return DataTypeUInt8().createColumnConst(elem.column->size(), 1u);
|
2018-09-08 01:24:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2018-09-08 01:24:09 +00:00
|
|
|
void registerFunctionIsNotNull(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionIsNotNull>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|