mirror of
https://github.com/MariaDB/server.git
synced 2025-06-03 07:02:23 +03:00
6 lines
168 B
Plaintext
6 lines
168 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;
|