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
|
|
|
}
|
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(Empty)
|
2018-09-09 23:36:06 +00:00
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionEmpty>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|