| 7308 | ******************************************************************/ |
| 7309 | |
| 7310 | static bool has_auth(LEX_USER *user, LEX *lex) |
| 7311 | { |
| 7312 | return user->has_auth() || |
| 7313 | lex->account_options.ssl_type != SSL_TYPE_NOT_SPECIFIED || |
| 7314 | lex->account_options.ssl_cipher.str || |
| 7315 | lex->account_options.x509_issuer.str || |
| 7316 | lex->account_options.x509_subject.str || |
| 7317 | lex->account_options.specified_limits; |
| 7318 | } |
| 7319 | |
| 7320 | static bool copy_and_check_auth(LEX_USER *to, LEX_USER *from, THD *thd) |
| 7321 | { |
no test coverage detected