| 448 | } |
| 449 | |
| 450 | StringVal 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 | |
| 457 | StringVal StringFunctions::InitCapUtf8(FunctionContext* context, const StringVal& str) { |
| 458 | return Utf8CaseConversion(context, str, |
nothing calls this directly
no test coverage detected