| 434 | */ |
| 435 | |
| 436 | uint check_n_cut_mysql50_prefix(const char *from, char *to, uint to_length) |
| 437 | { |
| 438 | if (check_mysql50_prefix(from)) |
| 439 | return (uint) (strmake(to, from + MYSQL50_TABLE_NAME_PREFIX_LENGTH, |
| 440 | to_length - 1) - to); |
| 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | |
| 445 | /* |
no test coverage detected