| 173 | |
| 174 | |
| 175 | USHORT TextType::key_length(USHORT len) |
| 176 | { |
| 177 | if (tt->texttype_fn_key_length) |
| 178 | return (*tt->texttype_fn_key_length)(tt, len); |
| 179 | |
| 180 | if (getCharSet()->isMultiByte()) |
| 181 | return UnicodeUtil::utf16KeyLength(len); |
| 182 | |
| 183 | return len; |
| 184 | } |
| 185 | |
| 186 | |
| 187 | USHORT TextType::string_to_key(USHORT srcLen, const UCHAR* src, |
no test coverage detected