mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
5 lines
168 B
Text
5 lines
168 B
Text
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;
|