MCPcopy Create free account
hub / github.com/apache/impala / LowerUtf8

Method LowerUtf8

be/src/exprs/string-functions-ir.cc:443–448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

441}
442
443StringVal StringFunctions::LowerUtf8(FunctionContext* context, const StringVal& str) {
444 return Utf8CaseConversion(context, str,
445 [](uint32_t wide_char, bool* word_start) {
446 return std::towlower(wide_char);
447 });
448}
449
450StringVal StringFunctions::UpperUtf8(FunctionContext* context, const StringVal& str) {
451 return Utf8CaseConversion(context, str,

Callers

nothing calls this directly

Calls 1

Utf8CaseConversionFunction · 0.85

Tested by

no test coverage detected