| 8969 | |
| 8970 | |
| 8971 | void AUTHID::copy(MEM_ROOT *mem_root, const LEX_CSTRING *user_name, |
| 8972 | const LEX_CSTRING *host_name) |
| 8973 | { |
| 8974 | user.str= strmake_root(mem_root, user_name->str, user_name->length); |
| 8975 | user.length= user_name->length; |
| 8976 | |
| 8977 | host.str= strmake_root(mem_root, host_name->str, host_name->length); |
| 8978 | host.length= host_name->length; |
| 8979 | } |
| 8980 | |
| 8981 | |
| 8982 | /* |
no test coverage detected