| 2270 | { |
| 2271 | public: |
| 2272 | Item_empty_string(const char *header, uint length, |
| 2273 | const CHARSET_INFO *cs= NULL) : |
| 2274 | Item_partition_func_safe_string(Name_string(header, strlen(header)), |
| 2275 | 0, cs ? cs : &my_charset_utf8_general_ci) |
| 2276 | { |
| 2277 | max_length= length * collation.collation->mbmaxlen; |
| 2278 | } |
| 2279 | }; |
| 2280 | |
| 2281 |
nothing calls this directly
no test coverage detected