ClickHouse/dbms/src/Functions/FunctionsNull.cpp

179 lines
4.8 KiB
C++
Raw Normal View History

#include <DB/Functions/FunctionsNull.h>
2016-08-04 23:32:18 +00:00
#include <DB/Functions/FunctionsLogical.h>
#include <DB/Functions/FunctionsConditional.h>
#include <DB/Functions/FunctionFactory.h>
2016-08-04 23:32:18 +00:00
#include <DB/DataTypes/DataTypesNumberFixed.h>
#include <DB/DataTypes/DataTypeNull.h>
#include <DB/DataTypes/DataTypeNullable.h>
#include <DB/Columns/ColumnConst.h>
#include <DB/Columns/ColumnNullable.h>
namespace DB
{
void registerFunctionsNull(FunctionFactory & factory)
{
factory.registerFunction<FunctionIsNull>();
factory.registerFunction<FunctionIsNotNull>();
factory.registerFunction<FunctionCoalesce>();
}
2016-08-04 23:32:18 +00:00
/// Implementation of isNull.
FunctionPtr FunctionIsNull::create(const Context & context)
{
return std::make_shared<FunctionIsNull>();
}
std::string FunctionIsNull::getName() const
{
return name;
}
bool FunctionIsNull::hasSpecialSupportForNulls() const
{
return true;
}
DataTypePtr FunctionIsNull::getReturnTypeImpl(const DataTypes & arguments) const
{
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<DataTypeUInt8>();
}
void FunctionIsNull::executeImpl(Block & block, const ColumnNumbers & arguments, size_t result)
{
ColumnWithTypeAndName & elem = block.getByPosition(arguments[0]);
if (elem.column->isNull())
{
/// Trivial case.
block.getByPosition(result).column = std::make_shared<ColumnConstUInt8>(elem.column.get()->size(), 1);
}
else if (elem.column->isNullable())
{
/// Merely return the embedded null map.
ColumnNullable & nullable_col = static_cast<ColumnNullable &>(*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<ColumnConstUInt8>(elem.column.get()->size(), 0);
}
}
/// Implementation of isNotNull.
FunctionPtr FunctionIsNotNull::create(const Context & context)
{
return std::make_shared<FunctionIsNotNull>();
}
std::string FunctionIsNotNull::getName() const
{
return name;
}
bool FunctionIsNotNull::hasSpecialSupportForNulls() const
{
return true;
}
DataTypePtr FunctionIsNotNull::getReturnTypeImpl(const DataTypes & arguments) const
{
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<DataTypeUInt8>();
}
void FunctionIsNotNull::executeImpl(Block & block, const ColumnNumbers & arguments, size_t result)
{
ColumnWithTypeAndName temp_res;
temp_res.type = std::make_shared<DataTypeUInt8>();
2016-08-05 10:32:41 +00:00
temp_res.name = "isNull(" + block.getByPosition(arguments[0]).name + ")";
2016-08-04 23:32:18 +00:00
2016-08-05 10:32:41 +00:00
size_t temp_res_num = block.columns();
2016-08-04 23:32:18 +00:00
block.insert(temp_res);
2016-08-05 10:04:00 +00:00
FunctionIsNull{}.executeImpl(block, arguments, temp_res_num);
FunctionNot{}.executeImpl(block, {temp_res_num}, result);
2016-08-04 23:32:18 +00:00
block.erase(temp_res_num);
}
/// Implementation of coalesce.
FunctionPtr FunctionCoalesce::create(const Context & context)
{
return std::make_shared<FunctionCoalesce>();
}
std::string FunctionCoalesce::getName() const
{
return name;
}
bool FunctionCoalesce::hasSpecialSupportForNulls() const
{
return true;
}
DataTypePtr FunctionCoalesce::getReturnTypeImpl(const DataTypes & arguments) const
{
DataTypes new_args;
for (size_t i = 0; i < arguments.size(); ++i)
{
new_args.push_back(std::make_shared<DataTypeUInt8>());
new_args.push_back(arguments[i]);
}
new_args.push_back(std::make_shared<DataTypeNull>());
return FunctionMultiIf{}.getReturnType(new_args);
}
void FunctionCoalesce::executeImpl(Block & block, const ColumnNumbers & arguments, size_t result)
{
/// coalesce(arg0, arg1, ..., argN) is essentially
/// multiIf(isNotNull(arg0), arg0, isNotNull(arg1), arg1, ..., isNotNull(argN), argN, NULL)
2016-08-05 09:53:14 +00:00
FunctionIsNotNull is_not_null;
2016-08-05 10:56:39 +00:00
ColumnNumbers multi_if_args;
2016-08-05 09:53:14 +00:00
2016-08-04 23:32:18 +00:00
for (size_t i = 0; i < arguments.size(); ++i)
{
ColumnWithTypeAndName elem;
elem.type = std::make_shared<DataTypeUInt8>();
elem.name = "isNotNull(" + block.getByPosition(arguments[i]).name + ")";
size_t res_pos = block.columns();
block.insert(elem);
2016-08-05 09:53:14 +00:00
is_not_null.executeImpl(block, { arguments[i] }, res_pos);
2016-08-04 23:32:18 +00:00
2016-08-05 10:56:39 +00:00
multi_if_args.push_back(res_pos);
multi_if_args.push_back(arguments[i]);
2016-08-04 23:32:18 +00:00
}
2016-08-05 09:35:37 +00:00
/// Argument corresponding to the fallback NULL value.
2016-08-05 10:56:39 +00:00
multi_if_args.push_back(block.columns());
2016-08-04 23:32:18 +00:00
2016-08-05 09:35:37 +00:00
/// Append a fallback NULL column.
2016-08-04 23:32:18 +00:00
ColumnWithTypeAndName elem;
elem.column = std::make_shared<ColumnNull>(block.rowsInFirstColumn(), Null());
elem.type = std::make_shared<DataTypeNull>();
elem.name = "NULL";
block.insert(elem);
2016-08-05 10:56:39 +00:00
FunctionMultiIf{}.execute(block, multi_if_args, result);
2016-08-04 23:32:18 +00:00
}
}