diff options
| author | AlexSm <[email protected]> | 2024-01-04 15:09:05 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-04 15:09:05 +0100 |
| commit | dab291146f6cd7d35684e3a1150e5bb1c412982c (patch) | |
| tree | 36ef35f6cacb6432845a4a33f940c95871036b32 /contrib/clickhouse/src/Functions/upperUTF8.cpp | |
| parent | 63660ad5e7512029fd0218e7a636580695a24e1f (diff) | |
Library import 5, delete go dependencies (#832)
* Library import 5, delete go dependencies
* Fix yt client
Diffstat (limited to 'contrib/clickhouse/src/Functions/upperUTF8.cpp')
| -rw-r--r-- | contrib/clickhouse/src/Functions/upperUTF8.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/contrib/clickhouse/src/Functions/upperUTF8.cpp b/contrib/clickhouse/src/Functions/upperUTF8.cpp deleted file mode 100644 index 659e67f0ef3..00000000000 --- a/contrib/clickhouse/src/Functions/upperUTF8.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include <Functions/FunctionStringToString.h> -#include <Functions/LowerUpperUTF8Impl.h> -#include <Functions/FunctionFactory.h> -#include <Poco/Unicode.h> - - -namespace DB -{ -namespace -{ - -struct NameUpperUTF8 -{ - static constexpr auto name = "upperUTF8"; -}; - -using FunctionUpperUTF8 = FunctionStringToString<LowerUpperUTF8Impl<'a', 'z', Poco::Unicode::toUpper, UTF8CyrillicToCase<false>>, NameUpperUTF8>; - -} - -REGISTER_FUNCTION(UpperUTF8) -{ - factory.registerFunction<FunctionUpperUTF8>(); -} - -} |
