mirror of
https://github.com/MariaDB/server.git
synced 2025-11-02 02:53:04 +03:00
11 lines
381 B
Plaintext
11 lines
381 B
Plaintext
set @old_dbug=@@global.debug_dbug;
|
|
set global debug_dbug='+d,auth_disconnect';
|
|
create user 'bad' identified by 'worse';
|
|
set global debug_dbug=@old_dbug;
|
|
drop user bad;
|
|
set global debug_dbug='+d,auth_invalid_plugin';
|
|
create user 'bad' identified by 'worse';
|
|
ERROR 1045 (28000): Plugin foo/bar could not be loaded: invalid plugin name
|
|
set global debug_dbug=@old_dbug;
|
|
drop user bad;
|