| 2718 | |
| 2719 | |
| 2720 | static bool append_at_host(THD *thd, String *buffer, const LEX_CSTRING *host) |
| 2721 | { |
| 2722 | if (!host->str || !host->str[0]) |
| 2723 | return false; |
| 2724 | return |
| 2725 | buffer->append('@') || |
| 2726 | append_identifier(thd, buffer, host); |
| 2727 | } |
| 2728 | |
| 2729 | |
| 2730 | /* |
no test coverage detected