mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
24 lines
545 B
C++
24 lines
545 B
C++
|
#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>();
|
||
|
}
|
||
|
|
||
|
}
|