ClickHouse/src/Functions/upper.cpp
2022-08-27 22:06:57 +02:00

26 lines
510 B
C++

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionStringToString.h>
#include <Functions/LowerUpperImpl.h>
namespace DB
{
namespace
{
struct NameUpper
{
static constexpr auto name = "upper";
};
using FunctionUpper = FunctionStringToString<LowerUpperImpl<'a', 'z'>, NameUpper>;
}
REGISTER_FUNCTION(Upper)
{
factory.registerFunction<FunctionUpper>({}, FunctionFactory::CaseInsensitive);
factory.registerAlias("ucase", FunctionUpper::name, FunctionFactory::CaseInsensitive);
}
}