#include #include #include #include namespace DB { struct NameNotEmpty { static constexpr auto name = "notEmpty"; }; using FunctionNotEmpty = FunctionStringOrArrayToT, NameNotEmpty, UInt8>; void registerFunctionNotEmpty(FunctionFactory & factory) { factory.registerFunction(); } }