ClickHouse/dbms/src/Functions/upperUTF8.cpp

24 lines
545 B
C++
Raw Normal View History

2018-09-09 23:36:06 +00:00
#include <DataTypes/DataTypeString.h>
#include <Functions/FunctionStringToString.h>
#include <Functions/LowerUpperUTF8Impl.h>
#include <Functions/FunctionFactory.h>
#include <Poco/Unicode.h>
namespace DB
{
struct NameUpperUTF8
{
static constexpr auto name = "upperUTF8";
};
using FunctionUpperUTF8 = FunctionStringToString<LowerUpperUTF8Impl<'a', 'z', Poco::Unicode::toUpper, UTF8CyrillicToCase<false>>, NameUpperUTF8>;
void registerFunctionUpperUTF8(FunctionFactory & factory)
{
factory.registerFunction<FunctionUpperUTF8>();
}
}