| 286 | } |
| 287 | |
| 288 | IntVal StringFunctions::Utf8Length(FunctionContext* context, const StringVal& str) { |
| 289 | if (str.is_null) return IntVal::null(); |
| 290 | return IntVal(CountUtf8Chars(str.ptr, str.len)); |
| 291 | } |
| 292 | |
| 293 | // Marks as IR_ALWAYS_INLINE since this is called in MaskFunctions::MaskHash(). |
| 294 | // So the caller can also replace GetConstFnAttr() calls in codegen. |
nothing calls this directly
no test coverage detected