ClickHouse/src/Functions/empty.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
427 B
C++
Raw Normal View History

2018-09-09 23:36:06 +00:00
#include <DataTypes/DataTypeString.h>
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionStringOrArrayToT.h>
#include <Functions/EmptyImpl.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
2018-09-09 23:36:06 +00:00
struct NameEmpty
{
static constexpr auto name = "empty";
};
2021-05-17 16:06:46 +00:00
using FunctionEmpty = FunctionStringOrArrayToT<EmptyImpl<false>, NameEmpty, UInt8, false>;
2018-09-09 23:36:06 +00:00
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(Empty)
2018-09-09 23:36:06 +00:00
{
factory.registerFunction<FunctionEmpty>();
}
}