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";
|
|
|
|
};
|
|
|
|
using FunctionEmpty = FunctionStringOrArrayToT<EmptyImpl<false>, NameEmpty, UInt8>;
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 23:36:06 +00:00
|
|
|
void registerFunctionEmpty(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionEmpty>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|