ClickHouse/src/Functions/lower.cpp

27 lines
569 B
C++
Raw Normal View History

2018-09-09 23:36:06 +00:00
#include <DataTypes/DataTypeString.h>
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionStringToString.h>
#include <Functions/LowerUpperImpl.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
2018-09-09 23:36:06 +00:00
struct NameLower
{
static constexpr auto name = "lower";
};
using FunctionLower = FunctionStringToString<LowerUpperImpl<'A', 'Z'>, NameLower>;
2020-09-07 18:00:37 +00:00
}
2018-09-09 23:36:06 +00:00
void registerFunctionLower(FunctionFactory & factory)
{
factory.registerFunction<FunctionLower>(FunctionFactory::CaseInsensitive);
2018-12-06 13:22:57 +00:00
factory.registerAlias("lcase", NameLower::name, FunctionFactory::CaseInsensitive);
2018-09-09 23:36:06 +00:00
}
}