mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
23 lines
558 B
C++
23 lines
558 B
C++
#include <DataTypes/DataTypeString.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionStringToString.h>
|
|
#include <Functions/LowerUpperImpl.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameUpper
|
|
{
|
|
static constexpr auto name = "upper";
|
|
};
|
|
using FunctionUpper = FunctionStringToString<LowerUpperImpl<'a', 'z'>, NameUpper>;
|
|
|
|
void registerFunctionUpper(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionUpper>(FunctionFactory::CaseInsensitive);
|
|
factory.registerAlias("ucase", FunctionUpper::name, FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|