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

Method UpperUtf8

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

Source from the content-addressed store, hash-verified

448}
449
450StringVal StringFunctions::UpperUtf8(FunctionContext* context, const StringVal& str) {
451 return Utf8CaseConversion(context, str,
452 [](uint32_t wide_char, bool* word_start) {
453 return std::towupper(wide_char);
454 });
455}
456
457StringVal StringFunctions::InitCapUtf8(FunctionContext* context, const StringVal& str) {
458 return Utf8CaseConversion(context, str,

Callers

nothing calls this directly

Calls 1

Utf8CaseConversionFunction · 0.85

Tested by

no test coverage detected